diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2013-02-23 08:41:52 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2013-03-14 22:49:25 +0100 |
commit | 0a513103bf2a80787ec4c7064570d08ad36881aa (patch) | |
tree | a58d228984212042f8b5480ebcc2374680bd2c8e /Makefile.in | |
parent | 7598eeaa1defa2884adaa890bb115c493d69cc35 (diff) |
buildsys: tweak KCONFIG_CONFIG export
0c3eb2da578bc7ba2e74d240e3249dce62ec725e moved KCONFIG_CONFIG around and
that broke propagation of config-settings to the testsuite. Fix that.
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/Makefile.in b/Makefile.in index f8f874d0d..163184bca 100644 --- a/Makefile.in +++ b/Makefile.in @@ -8,12 +8,6 @@ #-------------------------------------------------------------- # You shouldn't need to mess with anything beyond this point... #-------------------------------------------------------------- -clean_targets := clean realclean distclean \ - objclean-y headers_clean-y CLEAN_utils -noconfig_targets := menuconfig config oldconfig silentoldconfig randconfig \ - defconfig allyesconfig allnoconfig \ - release dist tags help - include $(top_srcdir)Rules.mak sub_headers := headers @@ -61,7 +55,7 @@ ifeq ($(HAVE_DOT_CONFIG),y) # on spot to save us from alot of hazzle. $(top_builddir)include/bits/uClibc_config.h: $(conf) $(KCONFIG_CONFIG) $(top_srcdir)extra/scripts/conf-header.sh | $(top_builddir)include/bits $(top_builddir)include/config @$(disp_gen) - $(Q)@$< -s $(top_srcdir)extra/Configs/Config.in + $(Q)$< -s $(top_srcdir)extra/Configs/Config.in $(Q)$(top_srcdir)extra/scripts/conf-header.sh $(KCONFIG_CONFIG) > $@ $(Q)$(MAKE) headers-y @@ -512,8 +506,8 @@ clean: include_clean distclean: clean -find . \( -name core -o -name \*.orig -o -name \*~ -o -name .\*.dep \) -exec $(RM) {} \; $(RM) $(top_builddir).config $(top_builddir).config.old $(top_builddir).config.cmd - $(RM) $(top_builddir)extra/locale/*.tgz - $(MAKE) -C extra/config distclean + $(Q)$(RM) $(top_builddir)extra/locale/*.tgz + @$(MAKE) -C extra/config distclean dist release: $(RM) ../uClibc-$(VERSION).tar |