diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2013-03-17 07:04:46 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2013-03-20 10:08:15 +0100 |
commit | 64828a12a04a6d18e84e7a0c286423033c6d41c7 (patch) | |
tree | 3b17143edde7701d2b04665a7858ddaa71eaf6bc /Makefile.in | |
parent | 6bfb450b58b778825e2c593c929b8ad4b8e294fb (diff) |
test: fix non-O checking
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 5d0f87d49..7e4582a0d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -513,7 +513,11 @@ dist release: du -b ../uClibc-$(VERSION).tar.{bz2,xz} test check: test_compile - $(Q)$(MAKE) -C test $(if $(O),top_builddir=$(O)/) + $(Q)$(MAKE) -C test \ + KCONFIG_CONFIG=$(__ABS_KCONFIG_CONFIG) \ + $(if $(O),top_builddir=$(O)/) test_compile: $(LOCAL_INSTALL_PATH) - $(Q)$(MAKE) -C test compile $(if $(O),top_builddir=$(O)/) + $(Q)$(MAKE) -C test compile \ + KCONFIG_CONFIG=$(__ABS_KCONFIG_CONFIG) \ + $(if $(O),top_builddir=$(O)/) |