aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndi Kleen <[email protected]>2010-11-05 12:06:05 +0100
committerMichal Marek <[email protected]>2010-11-25 15:51:42 +0100
commit45f53cc90e8f0e46ab024d0bc1de49ebee0dc583 (patch)
tree83de3fcf120eddb540714ac3546d9832a7140c3b
parent6e5b86924a633f5b6eefb051404339a5a7bb005e (diff)
Kconfig: fix single letter command in scripts/config
The one letter commands in scripts/config didn't work and always printed usage. Fix this here. Cc: [email protected] Reported-by: [email protected] Signed-off-by: Andi Kleen <[email protected]> Signed-off-by: Michal Marek <[email protected]>
-rwxr-xr-xscripts/config2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/config b/scripts/config
index 608d7fdb13e8..dfd4732f7099 100755
--- a/scripts/config
+++ b/scripts/config
@@ -86,7 +86,7 @@ while [ "$1" != "" ] ; do
B=$ARG
shift 2
;;
- --*)
+ -*)
checkarg "$1"
shift
;;