From: Alexey Brodkin Date: Mon, 20 Apr 2015 09:10:18 +0000 (+0300) Subject: uclibc: clean-up test suite build command X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b745982ed9a72c34792afbba81d1864716273d6d;p=buildroot.git uclibc: clean-up test suite build command Starting from uClibc 0.9.32 "test_compile" target builds tests flawlessly. For 0.9.31 it lead to build failure, but now when AVR32 support was dropped I think this change worth applying. Signed-off-by: Alexey Brodkin Cc: Peter Korsgaard Cc: Gustavo Zacarias Cc: Thomas Petazzoni Cc: Thomas De Schampheleire Signed-off-by: Thomas Petazzoni --- diff --git a/package/uclibc/uclibc.mk b/package/uclibc/uclibc.mk index eaac9dc403..7ff98b0fdc 100644 --- a/package/uclibc/uclibc.mk +++ b/package/uclibc/uclibc.mk @@ -398,12 +398,10 @@ endef ifeq ($(BR2_UCLIBC_INSTALL_TEST_SUITE),y) define UCLIBC_BUILD_TEST_SUITE - $(MAKE1) -C $(@D)/test \ + $(MAKE1) -C $(@D) \ $(UCLIBC_MAKE_FLAGS) \ - ARCH_CFLAGS=-I$(STAGING_DIR)/usr/include \ UCLIBC_ONLY=1 \ - TEST_INSTALLED_UCLIBC=1 \ - compile + test_compile endef endif