svn commit: r309126 - head/usr.bin/clang/lld

Ed Maste emaste at FreeBSD.org
Fri Nov 25 01:24:37 UTC 2016


Author: emaste
Date: Fri Nov 25 01:24:35 2016
New Revision: 309126
URL: https://svnweb.freebsd.org/changeset/base/309126

Log:
  Correct lld llvm-tblgen dependency file name

Modified:
  head/usr.bin/clang/lld/Makefile

Modified: head/usr.bin/clang/lld/Makefile
==============================================================================
--- head/usr.bin/clang/lld/Makefile	Fri Nov 25 00:25:59 2016	(r309125)
+++ head/usr.bin/clang/lld/Makefile	Fri Nov 25 01:24:35 2016	(r309126)
@@ -55,7 +55,7 @@ LLVM_TBLGEN?=	llvm-tblgen
 ELF/Options.inc: ${LLD_SRCS}/ELF/Options.td
 	${LLVM_TBLGEN} -gen-opt-parser-defs \
 	    -I ${LLVM_SRCS}/include \
-	    -d ${.TARGET:C/\.h$/.d/} -o ${.TARGET} \
+	    -d ${.TARGET:C/$/.d/} -o ${.TARGET} \
 	    ${LLVM_SRCS}/tools/lld/ELF/Options.td
 TGHDRS+=	ELF/Options.inc
 


More information about the svn-src-head mailing list