From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alexey Brodkin Date: Thu, 15 Jan 2015 08:07:13 +0000 Subject: [Buildroot] [PATCH] rt-tests: fix build of NTPL dependent tests In-Reply-To: References: Message-ID: <1421309233.3008.5.camel@synopsys.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: buildroot@busybox.net Hi Baruch, On Thu, 2015-01-15 at 09:19 +0200, Baruch Siach wrote: > Commit 143fe5b443da4 (rt-tests: allow building subset of tests with non-NPTL > toolchains) disabled build of NPTL dependent tests unconditionally. Fix this. > > Cc: Alexey Brodkin > Reported-by: "Williams Jr., Ernest L." > Signed-off-by: Baruch Siach > --- > package/rt-tests/rt-tests.mk | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/package/rt-tests/rt-tests.mk b/package/rt-tests/rt-tests.mk > index e0c7748c9c3b..009e9a6818ce 100644 > --- a/package/rt-tests/rt-tests.mk > +++ b/package/rt-tests/rt-tests.mk > @@ -15,6 +15,8 @@ endif > > ifeq ($(BR2_TOOLCHAIN_HAS_THREADS_NPTL),) > RT_TESTS_HAVE_NPTL=no > +else > +RT_TESTS_HAVE_NPTL=yes > endif My bad - indeed if build system passes "HAVE_NPTL=" to "rt-tests" then default "yes" won't be used in rt-test's Makefile (I mean "HAVE_NPTL ?= yes"). Thanks for fixing this. Please don't hesitate to add: --->8--- Tested-by: Alexey Brodkin --->8--- Regards, Alexey