Bug 187090 - [patch] math/blacs: fix build on FreeBSD/i386 8.x
Summary: [patch] math/blacs: fix build on FreeBSD/i386 8.x
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Maho Nakata
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-02-26 18:30 UTC by Tijl Coosemans
Modified: 2014-05-30 18:54 UTC (History)
0 users

See Also:


Attachments
blacs.patch (718 bytes, patch)
2014-02-26 18:30 UTC, Tijl Coosemans
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Tijl Coosemans freebsd_committer freebsd_triage 2014-02-26 18:30:00 UTC
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/
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2014-02-26 18:30:08 UTC
Responsible Changed
From-To: freebsd-ports-bugs->maho

Over to maintainer (via the GNATS Auto Assign Tool)
Comment 2 dfilter service freebsd_committer freebsd_triage 2014-03-06 02:58:56 UTC
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"
Comment 3 Tijl Coosemans freebsd_committer freebsd_triage 2014-05-30 18:54:00 UTC
State Changed
From-To: open->closed

Committed in r347160.