Explorar o código

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: erick@openchill.org
Reported-by: erick@openchill.org
Signed-off-by: Andi Kleen <ak@linux.intel.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>
Andi Kleen %!s(int64=14) %!d(string=hai) anos
pai
achega
45f53cc90e
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      scripts/config

+ 1 - 1
scripts/config

@@ -86,7 +86,7 @@ while [ "$1" != "" ] ; do
 		B=$ARG
 		shift 2
 		;;
-	--*)
+	-*)
 		checkarg "$1"
 		shift
 		;;