chainsaw 14/05/13 11:55:30 Added: 0.2.2-sandbox.patch Log: Stop trying to tiptoe around the autotools eclass and just use it correctly. This instills LDFLAGS respect, which was flagged up by Diego Elio "Flameeyes" Pettenò in bug #337357. (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB5058F9A)
Revision Changes Path 1.1 net-libs/iax/files/0.2.2-sandbox.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/iax/files/0.2.2-sandbox.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/iax/files/0.2.2-sandbox.patch?rev=1.1&content-type=text/plain Index: 0.2.2-sandbox.patch =================================================================== diff -uNr iax-0.2.2.ORIG/src/Makefile.am iax-0.2.2/src/Makefile.am --- iax-0.2.2.ORIG/src/Makefile.am 2014-05-13 12:45:58.343755528 +0100 +++ iax-0.2.2/src/Makefile.am 2014-05-13 12:46:30.044757107 +0100 @@ -9,10 +9,9 @@ EXTRA_DIST = md5.h frame.h iax-client.h iax.h install: - mkdir -p $(includedir)/iax - install -m 644 md5.h $(includedir)/iax - install -m 644 frame.h $(includedir)/iax - install -m 644 iax.h $(includedir)/iax - install -m 644 iax-client.h $(includedir)/iax - /sbin/ldconfig + mkdir -p $(DESTDIR)$(includedir)/iax + install -m 644 md5.h $(DESTDIR)$(includedir)/iax + install -m 644 frame.h $(DESTDIR)$(includedir)/iax + install -m 644 iax.h $(DESTDIR)$(includedir)/iax + install -m 644 iax-client.h $(DESTDIR)$(includedir)/iax
