Date: Wed, 27 Dec 2017 00:32:31 +0000 (UTC) From: Ed Maste <emaste@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r457344 - head/security/otpw Message-ID: <201712270032.vBR0WVkE086870@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201712270032.vBR0WVkE086870>