svn commit: r457344 - head/security/otpw

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


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

Log:
  security/otpw: 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. -lcrypto) 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/security/otpw/Makefile

Modified: head/security/otpw/Makefile
==============================================================================
--- head/security/otpw/Makefile	Tue Dec 26 23:26:33 2017	(r457343)
+++ head/security/otpw/Makefile	Wed Dec 27 00:32:31 2017	(r457344)
@@ -16,6 +16,7 @@ USERS=		${PORTNAME}
 
 MAKE_ARGS=	CC="${CC}"
 USES=		gmake
+LLD_UNSAFE=	yes	# lld lacks built-in search paths
 
 do-install:
 	${INSTALL_PROGRAM} ${WRKSRC}/otpw-gen ${STAGEDIR}${PREFIX}/bin


More information about the svn-ports-all mailing list