Re: [PATCH 1/1] scripts/config: Fix wrong "shift" for --keep-case

2012-12-14 Thread Michal Marek
On 14.12.2012 07:47, Hiroshi Doyu wrote: > 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

Re: [PATCH 1/1] scripts/config: Fix wrong shift for --keep-case

2012-12-14 Thread Michal Marek
On 14.12.2012 07:47, Hiroshi Doyu wrote: 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

[PATCH 1/1] scripts/config: Fix wrong "shift" for --keep-case

2012-12-13 Thread Hiroshi Doyu
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

[PATCH 1/1] scripts/config: Fix wrong shift for --keep-case

2012-12-13 Thread Hiroshi Doyu
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