Use a different switch to explicitly disable developer-only libraries

for the toolchain build.
This commit is contained in:
joerg 2011-07-05 17:15:51 +00:00
parent 0ffe711036
commit c8a6f85bd1
2 changed files with 4 additions and 4 deletions

View File

@ -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 \

View File

@ -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"