]> git.karo-electronics.de Git - karo-tx-uboot.git/commit
kconfig: fix whitespace handling bug of savedefconfig
authorMasahiro Yamada <yamada.m@jp.panasonic.com>
Wed, 3 Sep 2014 20:41:32 +0000 (05:41 +0900)
committerTom Rini <trini@ti.com>
Tue, 16 Sep 2014 16:23:58 +0000 (12:23 -0400)
commit8dffe663a2e50751150d92caf834f717d397ac80
tree7da227474d6a882b112430e6b5d6740a3ace87b8
parent93481b9f6b3286083a12b136e091caf6f24d8b9e
kconfig: fix whitespace handling bug of savedefconfig

Commit 3ff291f371fa9858426774f3732924bacb61ed1c
(kconfig: convert Kconfig helper script into a shell script)
introduced another regression.

Shell usually handles whitespaces as separators,
so "make saveconfig" outputs

  # CONFIG_FOO is not set

into:

  #
  CONFIG_FOO
  is
  not
  set

Whitespaces should not be treated as separators here.

Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Acked-by: Simon Glass <sjg@chromium.org>
scripts/multiconfig.sh