Date: Sat, 15 Mar 2014 21:00:01 GMT From: dfilter@FreeBSD.ORG (dfilter service) To: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/187609: commit references a PR Message-ID: <201403152100.s2FL01wN005449@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/187609; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/187609: commit references a PR Date: Sat, 15 Mar 2014 20:57:25 +0000 (UTC) Author: nox Date: Sat Mar 15 20:57:21 2014 New Revision: 348379 URL: http://svnweb.freebsd.org/changeset/ports/348379 QAT: https://qat.redports.org/buildarchive/r348379/ Log: - Fix absolute symlink that made Linux linker pick up native lib. (and fail) - Bump PORTREVISION. PR: ports/187609 Submitted by: nox (self, PR), Submitted by: Jason Bacon <jwbacon@tds.net> (maintainer, fix) Modified: head/devel/linux-f10-devtools/Makefile Modified: head/devel/linux-f10-devtools/Makefile ============================================================================== --- head/devel/linux-f10-devtools/Makefile Sat Mar 15 20:55:33 2014 (r348378) +++ head/devel/linux-f10-devtools/Makefile Sat Mar 15 20:57:21 2014 (r348379) @@ -3,6 +3,7 @@ PORTNAME= devtools PORTVERSION= 10 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://archives.fedoraproject.org/pub/archive/fedora/linux/updates/${PORTVERSION}/${LINUX_RPM_ARCH}/ \ http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/${PORTVERSION}/Fedora/${LINUX_RPM_ARCH}/os/Packages/ @@ -42,4 +43,9 @@ USE_LDCONFIG= yes PLIST_SUB+= NLS="" +# Replace link to absolute path /lib/libgcc_s.so.1, which is a FreeBSD lib +post-install: + ${RM} ${STAGEDIR}/compat/linux/usr/lib/gcc/i386-redhat-linux/4.3.2/libgcc_s.so + ${LN} -s ../../../../../lib/libgcc_s.so.1 ${STAGEDIR}/compat/linux/usr/lib/gcc/i386-redhat-linux/4.3.2/libgcc_s.so + .include <bsd.port.mk> _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201403152100.s2FL01wN005449>