From 2032301ef40d13ce7ceb17bce982409eadc3a670 Mon Sep 17 00:00:00 2001 From: Hongxu Jia Date: Tue, 26 Feb 2013 15:57:17 +0800 Subject: 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] (From OE-Core rev: fa0b40c233e757fe986aa45798b35b60b89c879f) Signed-off-by: Hongxu Jia Signed-off-by: Saul Wold Signed-off-by: Richard Purdie --- scripts/sstate-cache-management.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts/sstate-cache-management.sh') 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 -- cgit v1.2.3-54-g00ecf