The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / uclibc / 0.9.33.2 / 0060-test-Fix-math-c-dependency.patch
1 From a20a91ad7c042c46e4a2adee6d03315f857f9985 Mon Sep 17 00:00:00 2001
2 From: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
3 Date: Tue, 18 Feb 2014 23:30:28 +0100
4 Subject: [PATCH] test: Fix math .c dependency
5
6 When explicitly running the compile target we were missing a dependency
7 to generate the libm-test.c.
8
9 Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
10 ---
11  test/math/Makefile.in | 3 ++-
12  1 file changed, 2 insertions(+), 1 deletion(-)
13
14 diff --git a/test/math/Makefile.in b/test/math/Makefile.in
15 index beef650..0285b66 100644
16 --- a/test/math/Makefile.in
17 +++ b/test/math/Makefile.in
18 @@ -25,7 +25,8 @@ EXTRA_LDFLAGS   := -lm
19  
20  PERL := /usr/bin/perl
21  
22 -$(TESTS): libm-test.c
23 +MDEPS := $(wildcard test-*.c)
24 +$(MDEPS): libm-test.c
25  
26  libm-test.c: libm-test-ulps-$(TARGET_ARCH) libm-test.inc gen-libm-test.pl
27         $(Q)$(PERL) ./gen-libm-test.pl -u libm-test-ulps-$(TARGET_ARCH) ./libm-test.inc -o "." 2>&1 > /dev/null
28 -- 
29 1.9.3
30