]> code.ossystems Code Review - openembedded-core.git/blob
481b912387e7ca4279b38f8b944b787e72680578
[openembedded-core.git] /
1 From 1ca86294ee5454592c9ad855e13080509d8a92d3 Mon Sep 17 00:00:00 2001
2 From: Alexander Kanavin <alex.kanavin@gmail.com>
3 Date: Tue, 23 Jun 2020 07:49:35 +0000
4 Subject: [PATCH] tests/Makefile.am: compile test_nlist with standard CFLAGS
5
6 Otherwise, it will contain build paths in it and wont
7 be reproducible.
8
9 Upstream-Status: Inappropriate [oe-core specific]
10 Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
11 ---
12  tests/Makefile.am | 2 +-
13  1 file changed, 1 insertion(+), 1 deletion(-)
14
15 diff --git a/tests/Makefile.am b/tests/Makefile.am
16 index 8048b69..d2b28a4 100644
17 --- a/tests/Makefile.am
18 +++ b/tests/Makefile.am
19 @@ -86,7 +86,7 @@ backtrace-child-biarch$(EXEEXT): backtrace-child.c
20  test-nlist$(EXEEXT): test-nlist.c
21         $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
22           $(AM_CPPFLAGS) $(CPPFLAGS) \
23 -         $(test_nlist_CFLAGS) $(test_nlist_LDADD) -o $@ $<
24 +         $(CFLAGS) $(test_nlist_LDADD) -o $@ $<
25  
26  TESTS = run-arextract.sh run-arsymtest.sh run-ar.sh newfile test-nlist \
27         update1 update2 update3 update4 \