Date: Thu, 19 Sep 2019 09:56:15 +0000 (UTC) From: Brooks Davis <brooks@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r512326 - head/devel/xtoolchain-llvm-devel Message-ID: <201909190956.x8J9uF70045334@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: brooks Date: Thu Sep 19 09:56:15 2019 New Revision: 512326 URL: https://svnweb.freebsd.org/changeset/ports/512326 Log: Fix plist for the no-ld-link case. Modified: head/devel/xtoolchain-llvm-devel/Makefile Modified: head/devel/xtoolchain-llvm-devel/Makefile ============================================================================== --- head/devel/xtoolchain-llvm-devel/Makefile Thu Sep 19 09:40:37 2019 (r512325) +++ head/devel/xtoolchain-llvm-devel/Makefile Thu Sep 19 09:56:15 2019 (r512326) @@ -33,8 +33,10 @@ SUB_LIST= XCC=${XCC} \ XLD=${XLD} \ X_COMPILER_TYPE=${X_COMPILER_TYPE} -PLIST_FILES= share/toolchains/llvm${LLVM_SUFFIX}.mk \ - llvm${LLVM_SUFFIX}/bin/ld +PLIST_FILES= share/toolchains/llvm${LLVM_SUFFIX}.mk +.ifndef NO_LLD_LINK +PLIST_FILES+= llvm${LLVM_SUFFIX}/bin/ld +.endif do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/share/toolchains/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201909190956.x8J9uF70045334>