svn commit: r457345 - head/lang/rexx-regutil

Ed Maste emaste at FreeBSD.org
Wed Dec 27 00:54:45 UTC 2017


Author: emaste (src committer)
Date: Wed Dec 27 00:54:43 2017
New Revision: 457345
URL: https://svnweb.freebsd.org/changeset/ports/457345

Log:
  lang/rexx-regutil: set LLD_UNSAFE to avoid linking with lld
  
  lld does not have built-in search paths, so direct link invocations that
  specify a library (e.g. -lncurses) but do not specify a search path
  (e.g. -L/usr/lib) will fail.
  
  PR:		214864
  Submitted by:	krion
  Approved by:	portmgr (LLD_UNSAFE blanket)

Modified:
  head/lang/rexx-regutil/Makefile

Modified: head/lang/rexx-regutil/Makefile
==============================================================================
--- head/lang/rexx-regutil/Makefile	Wed Dec 27 00:32:31 2017	(r457344)
+++ head/lang/rexx-regutil/Makefile	Wed Dec 27 00:54:43 2017	(r457345)
@@ -21,6 +21,7 @@ USES=		ncurses zip
 
 WRKSRC=		${WRKDIR}/${PORTNAME}
 USE_LDCONFIG=	yes
+LLD_UNSAFE=	yes	# lld lacks built-in search paths
 MAKEFILE=	Makefile.bsd
 MAKE_ARGS+=	PLIBS="${LDFLAGS:M-L*} -lncurses"
 


More information about the svn-ports-all mailing list