Replace "ld" with "${LD}" so the right linker is used. This fixes: http://beefy1.isc.freebsd.org/bulk/83i386-default/2014-02-26_04h40m08s/logs/errors/blacs-1.7_15.log Redports test builds: https://redports.org/buildarchive/20140226154000-28270/
Responsible Changed From-To: freebsd-ports-bugs->maho Over to maintainer (via the GNATS Auto Assign Tool)
Author: maho Date: Thu Mar 6 02:58:44 2014 New Revision: 347160 URL: http://svnweb.freebsd.org/changeset/ports/347160 QAT: https://qat.redports.org/buildarchive/r347160/ Log: fix build on FreeBSD/i386 8.x PR: 187090 Submitted by: tijl@ Modified: head/math/blacs/Makefile Modified: head/math/blacs/Makefile ============================================================================== --- head/math/blacs/Makefile Thu Mar 6 00:24:09 2014 (r347159) +++ head/math/blacs/Makefile Thu Mar 6 02:58:44 2014 (r347160) @@ -90,7 +90,7 @@ post-build: ${MV} ${WRKSRC_SHARED}/LIB/blacsCinit_MPI-FreeBSD-${DEBUG_LEVEL}.a ${WRKSRC_SHARED}/LIB/libblacs.a ${FIND} ${WRKSRC_SHARED} -name "*\.a" -exec ${MV} {} ${WRKDIR}/tmp_shared \; cd ${WRKDIR}/tmp_shared ; for i in `ls *.a | ${SED} 's/\.a//' `; do \ - ld -Bshareable -o $${i}.so.${SVERSION} -x -soname $${i}.so.${SVERSION} --whole-archive $${i}.a ;\ + ${LD} -Bshareable -o $${i}.so.${SVERSION} -x -soname $${i}.so.${SVERSION} --whole-archive $${i}.a ;\ ${LN} -s $${i}.so.${SVERSION} $${i}.so ;\ done _______________________________________________ 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"
State Changed From-To: open->closed Committed in r347160.