mirror of
https://git.yoctoproject.org/poky
synced 2026-04-30 12:32:12 +02:00
Drop backports: 0001-Add-helper-function-for-basename.patch 0001-tests-fix-build-against-upcoming-gcc-14-Werror-callo.patch (From OE-Core rev: 797117902490fcd336697397ea5d8c2a601124b2) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
28 lines
993 B
Diff
28 lines
993 B
Diff
From 2d4dfb814dda02193e49c9203147cf73e6d3f8b7 Mon Sep 17 00:00:00 2001
|
|
From: Alexander Kanavin <alex.kanavin@gmail.com>
|
|
Date: Tue, 23 Jun 2020 07:49:35 +0000
|
|
Subject: [PATCH] tests/Makefile.am: compile test_nlist with standard CFLAGS
|
|
|
|
Otherwise, it will contain build paths in it and wont
|
|
be reproducible.
|
|
|
|
Upstream-Status: Inappropriate [oe-core specific]
|
|
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
|
|
---
|
|
tests/Makefile.am | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/tests/Makefile.am b/tests/Makefile.am
|
|
index 3bd8e58..370c6a8 100644
|
|
--- a/tests/Makefile.am
|
|
+++ b/tests/Makefile.am
|
|
@@ -103,7 +103,7 @@ endif
|
|
test-nlist$(EXEEXT): test-nlist.c
|
|
$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
|
$(AM_CPPFLAGS) $(CPPFLAGS) \
|
|
- $(test_nlist_CFLAGS) $(GCOV_FLAGS) -o $@ $< $(test_nlist_LDADD)
|
|
+ $(CFLAGS) $(GCOV_FLAGS) -o $@ $< $(test_nlist_LDADD)
|
|
|
|
TESTS = run-arextract.sh run-arsymtest.sh run-ar.sh newfile test-nlist \
|
|
run-ar-N.sh \
|