svn commit: r512326 - head/devel/xtoolchain-llvm-devel

Brooks Davis brooks at FreeBSD.org
Thu Sep 19 09:56:16 UTC 2019


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/


More information about the svn-ports-all mailing list