diff options
author | Christopher Larson <kergoth@gmail.com> | 2014-05-28 09:14:29 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-09-22 13:04:21 +0100 |
commit | d9ddf298e1eea9c1364d21f7168ecc7928a265d9 (patch) | |
tree | e764cf0141819cb4c292042f3a4913bc26e70d76 /meta/recipes-core | |
parent | 6730378be3fe1911a89c075f8fd4dfac0a350e5a (diff) | |
download | poky-d9ddf298e1eea9c1364d21f7168ecc7928a265d9.tar.gz |
zlib: obey LDFLAGS for tests
(From OE-Core rev: c91d9153d5dc6750d1f4c7b3be58da0a1248245b)
Signed-off-by: Christopher Larson <kergoth@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/zlib/zlib-1.2.8/ldflags-tests.patch | 45 | ||||
-rw-r--r-- | meta/recipes-core/zlib/zlib_1.2.8.bb | 1 |
2 files changed, 46 insertions, 0 deletions
diff --git a/meta/recipes-core/zlib/zlib-1.2.8/ldflags-tests.patch b/meta/recipes-core/zlib/zlib-1.2.8/ldflags-tests.patch new file mode 100644 index 0000000000..650794f504 --- /dev/null +++ b/meta/recipes-core/zlib/zlib-1.2.8/ldflags-tests.patch | |||
@@ -0,0 +1,45 @@ | |||
1 | Obey LDFLAGS for tests | ||
2 | |||
3 | Signed-off-by: Christopher Larson <chris_larson@mentor.com> | ||
4 | Upstream-status: Pending | ||
5 | |||
6 | --- zlib-1.2.8.orig/Makefile.in | ||
7 | +++ zlib-1.2.8/Makefile.in | ||
8 | @@ -26,7 +26,7 @@ CFLAGS=-O | ||
9 | |||
10 | SFLAGS=-O | ||
11 | LDFLAGS= | ||
12 | -TEST_LDFLAGS=-L. libz.a | ||
13 | +TEST_LDFLAGS=-L. $(LDFLAGS) | ||
14 | LDSHARED=$(CC) | ||
15 | CPP=$(CC) -E | ||
16 | |||
17 | @@ -176,22 +176,22 @@ placebo $(SHAREDLIBV): $(PIC_OBJS) libz. | ||
18 | -@rmdir objs | ||
19 | |||
20 | example$(EXE): example.o $(STATICLIB) | ||
21 | - $(CC) $(CFLAGS) -o $@ example.o $(TEST_LDFLAGS) | ||
22 | + $(CC) $(CFLAGS) -o $@ example.o $(TEST_LDFLAGS) $(STATICLIB) | ||
23 | |||
24 | minigzip$(EXE): minigzip.o $(STATICLIB) | ||
25 | - $(CC) $(CFLAGS) -o $@ minigzip.o $(TEST_LDFLAGS) | ||
26 | + $(CC) $(CFLAGS) -o $@ minigzip.o $(TEST_LDFLAGS) $(STATICLIB) | ||
27 | |||
28 | examplesh$(EXE): example.o $(SHAREDLIBV) | ||
29 | - $(CC) $(CFLAGS) -o $@ example.o -L. $(SHAREDLIBV) | ||
30 | + $(CC) $(CFLAGS) -o $@ example.o $(TEST_LDFLAGS) $(SHAREDLIBV) | ||
31 | |||
32 | minigzipsh$(EXE): minigzip.o $(SHAREDLIBV) | ||
33 | - $(CC) $(CFLAGS) -o $@ minigzip.o -L. $(SHAREDLIBV) | ||
34 | + $(CC) $(CFLAGS) -o $@ minigzip.o $(TEST_LDFLAGS) $(SHAREDLIBV) | ||
35 | |||
36 | example64$(EXE): example64.o $(STATICLIB) | ||
37 | - $(CC) $(CFLAGS) -o $@ example64.o $(TEST_LDFLAGS) | ||
38 | + $(CC) $(CFLAGS) -o $@ example64.o $(TEST_LDFLAGS) $(STATICLIB) | ||
39 | |||
40 | minigzip64$(EXE): minigzip64.o $(STATICLIB) | ||
41 | - $(CC) $(CFLAGS) -o $@ minigzip64.o $(TEST_LDFLAGS) | ||
42 | + $(CC) $(CFLAGS) -o $@ minigzip64.o $(TEST_LDFLAGS) $(STATICLIB) | ||
43 | |||
44 | install-libs: $(LIBS) | ||
45 | -@if [ ! -d $(DESTDIR)$(exec_prefix) ]; then mkdir -p $(DESTDIR)$(exec_prefix); fi | ||
diff --git a/meta/recipes-core/zlib/zlib_1.2.8.bb b/meta/recipes-core/zlib/zlib_1.2.8.bb index bdfa045b7b..ca0ba3ff6e 100644 --- a/meta/recipes-core/zlib/zlib_1.2.8.bb +++ b/meta/recipes-core/zlib/zlib_1.2.8.bb | |||
@@ -10,6 +10,7 @@ LIC_FILES_CHKSUM = "file://zlib.h;beginline=4;endline=23;md5=fde612df1e5933c428b | |||
10 | SRC_URI = "http://www.zlib.net/${BPN}-${PV}.tar.xz \ | 10 | SRC_URI = "http://www.zlib.net/${BPN}-${PV}.tar.xz \ |
11 | file://remove.ldconfig.call.patch \ | 11 | file://remove.ldconfig.call.patch \ |
12 | file://Makefile-runtests.patch \ | 12 | file://Makefile-runtests.patch \ |
13 | file://ldflags-tests.patch \ | ||
13 | file://run-ptest \ | 14 | file://run-ptest \ |
14 | " | 15 | " |
15 | 16 | ||