Date: Sat, 15 Feb 2014 13:02:54 +0000 (UTC) From: Tijl Coosemans <tijl@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r344382 - head/graphics/exiv2/files Message-ID: <201402151302.s1FD2sQf012306@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tijl Date: Sat Feb 15 13:02:53 2014 New Revision: 344382 URL: http://svnweb.freebsd.org/changeset/ports/344382 QAT: https://qat.redports.org/buildarchive/r344382/ Log: Fix build after r344318. Libtool no longer adds implicit dependencies to the linker command line. PR: ports/186789 Added: head/graphics/exiv2/files/ head/graphics/exiv2/files/patch-src-Makefile (contents, props changed) Added: head/graphics/exiv2/files/patch-src-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/exiv2/files/patch-src-Makefile Sat Feb 15 13:02:53 2014 (r344382) @@ -0,0 +1,11 @@ +--- src/Makefile.orig ++++ src/Makefile +@@ -249,7 +249,7 @@ + @$(LIBTOOL) --mode=link $(LINK.cc) -o $@ $(LIBRARY) $@.o -rpath $(libdir) + + $(EXIV2BIN): lib $(EXIV2OBJ) $(EXIV2COBJ) +- @$(LIBTOOL) --mode=link $(LINK.cc) -o $@ $(LIBRARY) $(EXIV2OBJ) $(EXIV2COBJ) -rpath $(libdir) ++ @$(LIBTOOL) --mode=link $(LINK.cc) -o $@ $(LIBRARY) $(EXIV2OBJ) $(EXIV2COBJ) -rpath $(libdir) $(LIBS) + + $(MCBIN): lib $(MCOBJ) + @$(LIBTOOL) --mode=link $(LINK.cc) -o $@ $(LIBRARY) $(MCOBJ) -rpath $(libdir)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201402151302.s1FD2sQf012306>