svn commit: r465751 - head/sysutils/installwatch

Ed Maste emaste at FreeBSD.org
Tue Mar 27 20:55:01 UTC 2018


Author: emaste (src committer)
Date: Tue Mar 27 20:55:00 2018
New Revision: 465751
URL: https://svnweb.freebsd.org/changeset/ports/465751

Log:
  sysutils/installwatch: use BINARY_ALIAS to invoke ld.bfd
  
  This port does not honour LD or -fuse-ld in CFLAGS via LLD_UNSAFE but
  BINARY_ALIAS can be used to ensure we use the BFD linker.
  
  PR:		226989
  Approved by:	portmgr (LLD_UNSAFE blanket)
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/sysutils/installwatch/Makefile

Modified: head/sysutils/installwatch/Makefile
==============================================================================
--- head/sysutils/installwatch/Makefile	Tue Mar 27 20:47:48 2018	(r465750)
+++ head/sysutils/installwatch/Makefile	Tue Mar 27 20:55:00 2018	(r465751)
@@ -14,6 +14,8 @@ LICENSE=	GPLv2+
 LICENSE_FILE=	${WRKSRC}/COPYING
 
 USE_LDCONFIG=	yes
+# LLD_UNSAFE - requires directly-invoked linker to provide library search paths
+BINARY_ALIAS=	ld=ld.bfd
 
 PLIST_FILES=	bin/installwatch lib/installwatch.so
 PORTDOCS=	BUGS CHANGELOG README TODO


More information about the svn-ports-all mailing list