summaryrefslogtreecommitdiffstats
path: root/usr.bin
diff options
context:
space:
mode:
authorimp <imp@FreeBSD.org>2014-05-10 16:38:03 +0000
committerimp <imp@FreeBSD.org>2014-05-10 16:38:03 +0000
commite6fca569b67e405849736e04263da799f4f753c7 (patch)
tree2e8cac98e466775e3d1f30f7068850ba6600f4e7 /usr.bin
parent83f75350837bec3abb754f10990fc31754daf37f (diff)
downloadFreeBSD-src-e6fca569b67e405849736e04263da799f4f753c7.zip
FreeBSD-src-e6fca569b67e405849736e04263da799f4f753c7.tar.gz
Eliminate EARLY_BUILD flag. It is redundant and means MK_CLANG_FULL=no
and MK_LLDB=no, so set those explicitly (now that we can do that). Simplify tests for these variables as well, since we know they will always be defined regardless of the phase of the build.
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/clang/clang/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/clang/clang/Makefile b/usr.bin/clang/clang/Makefile
index 74ef867..345efde 100644
--- a/usr.bin/clang/clang/Makefile
+++ b/usr.bin/clang/clang/Makefile
@@ -36,7 +36,7 @@ TGHDRS= CC1AsOptions \
DiagnosticSemaKinds \
Options
-.if !defined(EARLY_BUILD) && defined(MK_CLANG_FULL) && ${MK_CLANG_FULL} != "no"
+.if ${MK_CLANG_FULL} != "no"
_clangstaticanalyzer= \
clangstaticanalyzerfrontend \
clangstaticanalyzercheckers \
@@ -46,7 +46,7 @@ _clangarcmigrate= \
_clangrewriter= \
clangrewritefrontend \
clangrewritecore
-.endif # !EARLY_BUILD && MK_CLANG_FULL
+.endif # MK_CLANG_FULL
LIBDEPS=clangfrontendtool \
clangfrontend \
OpenPOWER on IntegriCloud