Add patch to fix underlinking of test-archive
This commit is contained in:
parent
86898fcf32
commit
934f62cb2a
|
|
@ -31,6 +31,7 @@ ostree (2016.3-1) UNRELEASED; urgency=medium
|
||||||
practice
|
practice
|
||||||
* Only build on Linux architectures; this package is specifically
|
* Only build on Linux architectures; this package is specifically
|
||||||
not portable
|
not portable
|
||||||
|
* Add patch to fix underlinking of test-archive
|
||||||
|
|
||||||
-- Simon McVittie <smcv@debian.org> Wed, 27 Jan 2016 13:04:34 +0100
|
-- Simon McVittie <smcv@debian.org> Wed, 27 Jan 2016 13:04:34 +0100
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
test-libarchive-fix-underlinking.patch
|
||||||
|
|
@ -0,0 +1,24 @@
|
||||||
|
From: Simon McVittie <smcv@debian.org>
|
||||||
|
Date: Fri, 11 Mar 2016 08:46:27 +0000
|
||||||
|
Subject: test-libarchive: fix underlinking
|
||||||
|
|
||||||
|
Signed-off-by: Simon McVittie <smcv@debian.org>
|
||||||
|
---
|
||||||
|
Makefile-tests.am | 4 ++--
|
||||||
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/Makefile-tests.am b/Makefile-tests.am
|
||||||
|
index 6ec5835..4b0a526 100644
|
||||||
|
--- a/Makefile-tests.am
|
||||||
|
+++ b/Makefile-tests.am
|
||||||
|
@@ -179,8 +179,8 @@ tests_test_checksum_CFLAGS = $(TESTS_CFLAGS) $(libglnx_cflags)
|
||||||
|
tests_test_checksum_LDADD = $(TESTS_LDADD)
|
||||||
|
|
||||||
|
tests_test_libarchive_import_SOURCES = tests/test-libarchive-import.c
|
||||||
|
-tests_test_libarchive_import_CFLAGS = $(TESTS_CFLAGS) $(libglnx_cflags)
|
||||||
|
-tests_test_libarchive_import_LDADD = $(TESTS_LDADD)
|
||||||
|
+tests_test_libarchive_import_CFLAGS = $(TESTS_CFLAGS) $(libglnx_cflags) $(OT_DEP_LIBARCHIVE_CFLAGS)
|
||||||
|
+tests_test_libarchive_import_LDADD = $(TESTS_LDADD) $(OT_DEP_LIBARCHIVE_LIBS)
|
||||||
|
|
||||||
|
tests_test_keyfile_utils_CFLAGS = $(TESTS_CFLAGS)
|
||||||
|
tests_test_keyfile_utils_LDADD = $(TESTS_LDADD)
|
||||||
Loading…
Reference in New Issue