aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/sstate-cache-management.sh
diff options
context:
space:
mode:
authorHongxu Jia <hongxu.jia@windriver.com>2013-02-26 15:57:17 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-02-28 23:14:39 +0000
commitfa0b40c233e757fe986aa45798b35b60b89c879f (patch)
tree8d80a1571bc466a81a1c658ffdcc1b67aca7102e /scripts/sstate-cache-management.sh
parentc201fdc2f01f398060cd953a1640a685797d9e64 (diff)
downloadopenembedded-core-contrib-fa0b40c233e757fe986aa45798b35b60b89c879f.tar.gz
sstate-cache-management.sh:fix the incorrect usage of option `-d'
The description of option `-d' is not correct in useage. It is used to remove duplicate and debug at the same time. Use option `-D' to control debug info output and the option `-d' to flag remove duplicate. [YOCTO #3635] Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'scripts/sstate-cache-management.sh')
-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 2d4a2a3266..f198ea1d82 100755
--- a/scripts/sstate-cache-management.sh
+++ b/scripts/sstate-cache-management.sh
@@ -72,7 +72,7 @@ Options:
-v, --verbose
explain what is being done
- -d, --debug
+ -D, --debug
show debug info, repeat for more debug info
EOF
@@ -388,7 +388,7 @@ while [ -n "$1" ]; do
verbose="-v"
shift
;;
- --debug)
+ --debug|-D)
debug=`expr $debug + 1`
echo "Debug level $debug"
shift