Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-libs/libfaketime/files: libfaketime-0.9-as-needed.patch
Date: Mon, 27 Feb 2012 23:54:17
Message-Id: 20120227235408.AD8762004C@flycatcher.gentoo.org
1 radhermit 12/02/27 23:54:08
2
3 Added: libfaketime-0.9-as-needed.patch
4 Log:
5 Revbump to fix undefined symbol error at runtime when built with --as-needed (bug #406041). Remove old.
6
7 (Portage version: 2.2.0_alpha87/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 sys-libs/libfaketime/files/libfaketime-0.9-as-needed.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libfaketime/files/libfaketime-0.9-as-needed.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libfaketime/files/libfaketime-0.9-as-needed.patch?rev=1.1&content-type=text/plain
14
15 Index: libfaketime-0.9-as-needed.patch
16 ===================================================================
17 --- libfaketime-0.9/src/Makefile.orig
18 +++ libfaketime-0.9/src/Makefile
19 @@ -69,7 +69,7 @@
20 ${CC} -o $@ -c ${CFLAGS} ${EXTRA_FLAGS} $<
21
22 lib%.so.${SONAME}: %.o
23 - ${CC} -o $@ -Wl,-soname,$@ ${LDFLAGS} $<
24 + ${CC} -o $@ -Wl,-soname,$@ $< ${LDFLAGS}
25
26 clean:
27 @rm -f ${OBJ} ${LIBS}