mirror of
https://github.com/joel16/android_kernel_sony_msm8994_rework.git
synced 2024-11-23 20:09:51 +00:00
scripts/config: Fix wrong "shift" for --keep-case
Remove wrong "shift" for --keep-case. There is always "shift" at beginning of while-loop. No need "shift" at --keep-case just before "continue" to process next argument. Now the following works as expected: ./scripts/config -e aAa -k -e bBb -e cCc && tail -3 .config CONFIG_AAA=y CONFIG_bBb=y CONFIG_cCc=y Signed-off-by: Hiroshi Doyu <hdoyu@nvidia.com> Signed-off-by: Michal Marek <mmarek@suse.cz>
This commit is contained in:
parent
923e02ecf3
commit
c6ba8d06ec
@ -101,7 +101,6 @@ while [ "$1" != "" ] ; do
|
|||||||
case "$CMD" in
|
case "$CMD" in
|
||||||
--keep-case|-k)
|
--keep-case|-k)
|
||||||
MUNGE_CASE=no
|
MUNGE_CASE=no
|
||||||
shift
|
|
||||||
continue
|
continue
|
||||||
;;
|
;;
|
||||||
--refresh)
|
--refresh)
|
||||||
|
Loading…
Reference in New Issue
Block a user