Use a different switch to explicitly disable developer-only libraries
for the toolchain build.
This commit is contained in:
parent
0ffe711036
commit
c8a6f85bd1
4
external/bsd/llvm/lib/Makefile
vendored
4
external/bsd/llvm/lib/Makefile
vendored
@ -1,4 +1,4 @@
|
||||
# $NetBSD: Makefile,v 1.8 2011/07/05 14:15:56 joerg Exp $
|
||||
# $NetBSD: Makefile,v 1.9 2011/07/05 17:15:51 joerg Exp $
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
@ -44,7 +44,7 @@ SUBDIR+= \
|
||||
libLLVMX86TargetInfo \
|
||||
libLLVMX86Utils
|
||||
|
||||
.if ${LLVM_DEVELOPER:U} == "yes"
|
||||
.if ${NO_LLVM_DEVELOPER:Dno} == "yes" && ${LLVM_DEVELOPER:U} == "yes"
|
||||
SUBDIR+= \
|
||||
libLLVMArchive \
|
||||
libLLVMCBackend \
|
||||
|
@ -1,8 +1,8 @@
|
||||
# $NetBSD: Makefile,v 1.1 2011/02/06 01:14:12 joerg Exp $
|
||||
# $NetBSD: Makefile,v 1.2 2011/07/05 17:15:51 joerg Exp $
|
||||
|
||||
.include <bsd.init.mk>
|
||||
|
||||
LLVM_DEVELOPER= no
|
||||
NO_LLVM_DEVELOPER= yes
|
||||
|
||||
.include "${.PARSEDIR}/../llvm/Makefile.inc"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user