aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Sarenik <jajomojo@gmail.com>2016-02-14 09:28:49 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-02-15 16:28:22 +0000
commitc712529030c71b45bb8ae647c17319c2647aedff (patch)
treef3eee0fa133f3f1acd1143734af8b955414d29c7
parentcb512c0c189f5a1196da233042113a708243daa0 (diff)
downloadopenembedded-core-contrib-c712529030c71b45bb8ae647c17319c2647aedff.tar.gz
scripts/sstate-cache-management.sh: Change wording
Use "out of" rather than "from" in the output. Signed-off-by: Jan Sarenik <jajomojo@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rwxr-xr-xscripts/sstate-cache-management.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/sstate-cache-management.sh b/scripts/sstate-cache-management.sh
index 2286765ebd..2ab450ab59 100755
--- a/scripts/sstate-cache-management.sh
+++ b/scripts/sstate-cache-management.sh
@@ -101,7 +101,7 @@ do_nothing () {
# Read the input "y"
read_confirm () {
- echo "$total_deleted from $total_files files will be removed! "
+ echo "$total_deleted out of $total_files files will be removed! "
if [ "$confirm" != "y" ]; then
echo "Do you want to continue (y/n)? "
while read confirm; do
@@ -282,7 +282,7 @@ remove_duplicated () {
deleted_tgz=`cat $rm_list.* 2>/dev/null | grep ".tgz$" | wc -l`
deleted_files=`cat $rm_list.* 2>/dev/null | wc -l`
[ "$deleted_files" -gt 0 -a $debug -gt 0 ] && cat $rm_list.*
- echo "($deleted_tgz from $total_tgz_suffix .tgz files for $suffix suffix will be removed or $deleted_files from $total_files_suffix when counting also .siginfo and .done files)"
+ echo "($deleted_tgz out of $total_tgz_suffix .tgz files for $suffix suffix will be removed or $deleted_files out of $total_files_suffix when counting also .siginfo and .done files)"
let total_deleted=$total_deleted+$deleted_files
done
deleted_tgz=0