]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/blob
d410eb13d819b8ad07490346178f1de5f390cecd
[thirdparty/openembedded/openembedded-core-contrib.git] /
1 From 2d4dfb814dda02193e49c9203147cf73e6d3f8b7 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 3bd8e58..370c6a8 100644
17 --- a/tests/Makefile.am
18 +++ b/tests/Makefile.am
19 @@ -103,7 +103,7 @@ endif
20 test-nlist$(EXEEXT): test-nlist.c
21 $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
22 $(AM_CPPFLAGS) $(CPPFLAGS) \
23 - $(test_nlist_CFLAGS) $(GCOV_FLAGS) -o $@ $< $(test_nlist_LDADD)
24 + $(CFLAGS) $(GCOV_FLAGS) -o $@ $< $(test_nlist_LDADD)
25
26 TESTS = run-arextract.sh run-arsymtest.sh run-ar.sh newfile test-nlist \
27 run-ar-N.sh \