Date: Fri, 4 Apr 2014 13:35:05 +0000 (UTC) From: Rene Ladan <rene@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r350115 - in head/devel/chrpath: . files Message-ID: <201404041335.s34DZ5Jc004547@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: rene Date: Fri Apr 4 13:35:04 2014 New Revision: 350115 URL: http://svnweb.freebsd.org/changeset/ports/350115 QAT: https://qat.redports.org/buildarchive/r350115/ Log: - Fix build with clang 3.4 by passing -Wl, before -R [1] - Bump PORTREVISION Submitted by: marino [1] Added: head/devel/chrpath/files/patch-testsuite__Makefile.in (contents, props changed) Modified: head/devel/chrpath/Makefile Modified: head/devel/chrpath/Makefile ============================================================================== --- head/devel/chrpath/Makefile Fri Apr 4 13:27:58 2014 (r350114) +++ head/devel/chrpath/Makefile Fri Apr 4 13:35:04 2014 (r350115) @@ -3,7 +3,7 @@ PORTNAME= chrpath PORTVERSION= 0.13 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel sysutils MASTER_SITES= http://ftp.tux.org/pub/X-Windows/ftp.hungry.com/chrpath/ Added: head/devel/chrpath/files/patch-testsuite__Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/chrpath/files/patch-testsuite__Makefile.in Fri Apr 4 13:35:04 2014 (r350115) @@ -0,0 +1,11 @@ +--- ./testsuite/Makefile.in.orig 2004-09-19 10:42:53.000000000 +0200 ++++ ./testsuite/Makefile.in 2014-04-04 15:32:16.000000000 +0200 +@@ -259,7 +259,7 @@ + + + prog: prog.c +- $(CC) $(RPATH) -o $@ $< ++ $(CC) -Wl,$(RPATH) -o $@ $< + + check: $(CHRPATH) + $(srcdir)/runtest.sh
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201404041335.s34DZ5Jc004547>