diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2011-06-14 18:48:19 +0200 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2011-06-14 18:48:19 +0200 |
commit | 97c3c5f634379ff7b16dcaeff34b7f3eeea2b3f1 (patch) | |
tree | 270faf8a9f63b88dcb9868fbb2ac2dd1a4fe2e50 | |
parent | 4cf580dfcc5846b89a4cf688ecca431d5a5e5647 (diff) |
config: Fix passing defconfig args
Don't rely on argument-shuffling but use correct arguments in
the first place.
In bug#3589 Thomas Suckow writes:
The modified kconfig defines -D to be the same function as -d. In
addition -d does not take an argument and Config.in should be passed as
a non-option argument. The existing argument order appears to work on
distributions such as Fedora but chokes on Cygwin (newlib?).
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
-rw-r--r-- | Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 90a78db6c..ad9e629e1 100644 --- a/Makefile.in +++ b/Makefile.in @@ -448,8 +448,8 @@ allnoconfig: $(top_builddir)extra/config/conf $(Q)$(top_builddir)extra/config/conf -n extra/Configs/Config.in defconfig: $(top_builddir)extra/config/conf - $(Q)$(top_builddir)extra/config/conf -d extra/Configs/Config.in \ - -D extra/Configs/defconfigs/$(ARCH) + $(Q)$(top_builddir)extra/config/conf \ + -D extra/Configs/defconfigs/$(ARCH) extra/Configs/Config.in menuconfig-clean-y: $(Q)$(MAKE) -C extra/config CLEAN_extra/config |