Date: Wed, 28 Mar 2018 12:58:19 +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: r465804 - in head: devel/libds devel/pdcurses irc/evangeline sysutils/installwatch Message-ID: <201803281258.w2SCwJdw050342@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: emaste (src committer) Date: Wed Mar 28 12:58:19 2018 New Revision: 465804 URL: https://svnweb.freebsd.org/changeset/ports/465804 Log: Also set LLD_UNSAFE when using BINARY_ALIAS to choose ld.bfd arm64 provides no /usr/bin/ld.bfd by default. LLD_UNSAFE automatically adds a dependency on binutils for this case, so is needed in addition to BINARY_ALIAS=ld=ld.bfd. Approved by: portmgr (LLD_UNSAFE blanket) Sponsored by: The FreeBSD Foundation Modified: head/devel/libds/Makefile head/devel/pdcurses/Makefile head/irc/evangeline/Makefile head/sysutils/installwatch/Makefile Modified: head/devel/libds/Makefile ============================================================================== --- head/devel/libds/Makefile Wed Mar 28 12:42:34 2018 (r465803) +++ head/devel/libds/Makefile Wed Mar 28 12:58:19 2018 (r465804) @@ -14,7 +14,8 @@ COMMENT= ANSI Generic Data Structures Library LICENSE= BSD4CLAUSE USE_LDCONFIG= yes -# LLD_UNSAFE - requires directly-invoked linker to provide library search paths +# Requires directly-invoked linker to provide library search paths. +LLD_UNSAFE= yes BINARY_ALIAS= ld=ld.bfd ALL_TARGET= gcc Modified: head/devel/pdcurses/Makefile ============================================================================== --- head/devel/pdcurses/Makefile Wed Mar 28 12:42:34 2018 (r465803) +++ head/devel/pdcurses/Makefile Wed Mar 28 12:58:19 2018 (r465804) @@ -18,7 +18,8 @@ USE_LDCONFIG= yes USE_XORG= x11 xext sm ice xt xaw xmu xpm GNU_CONFIGURE= yes MAKE_JOBS_UNSAFE=yes -# LLD_UNSAFE - requires directly-invoked linker to provide library search paths +# Requires directly-invoked linker to provide library search paths. +LLD_UNSAFE= yes BINARY_ALIAS= ld=ld.bfd WRKSRC_SUBDIR= x11 Modified: head/irc/evangeline/Makefile ============================================================================== --- head/irc/evangeline/Makefile Wed Mar 28 12:42:34 2018 (r465803) +++ head/irc/evangeline/Makefile Wed Mar 28 12:58:19 2018 (r465804) @@ -18,7 +18,8 @@ USES= gmake tcl GNU_CONFIGURE= yes CONFIGURE_ARGS+=--with-tcllib=${LOCALBASE}/lib/libtcl${TCL_SHLIB_VER}.so \ --with-tclinc=${TCL_INCLUDEDIR}/tcl.h -# LLD_UNSAFE - requires directly-invoked linker to provide library search paths +# Requires directly-invoked linker to provide library search paths. +LLD_UNSAFE= yes BINARY_ALIAS= ld=ld.bfd PLIST_FILES= bin/evangeline Modified: head/sysutils/installwatch/Makefile ============================================================================== --- head/sysutils/installwatch/Makefile Wed Mar 28 12:42:34 2018 (r465803) +++ head/sysutils/installwatch/Makefile Wed Mar 28 12:58:19 2018 (r465804) @@ -14,7 +14,8 @@ LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING USE_LDCONFIG= yes -# LLD_UNSAFE - requires directly-invoked linker to provide library search paths +# Requires directly-invoked linker to provide library search paths. +LLD_UNSAFE= yes BINARY_ALIAS= ld=ld.bfd PLIST_FILES= bin/installwatch lib/installwatch.so
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201803281258.w2SCwJdw050342>