svn commit: r208001 - projects/clangbsd/usr.bin
Roman Divacky
rdivacky at FreeBSD.org
Wed May 12 20:58:09 UTC 2010
Author: rdivacky
Date: Wed May 12 20:58:08 2010
New Revision: 208001
URL: http://svn.freebsd.org/changeset/base/208001
Log:
build clang only when WITHOUT_TOOLCHAIN is not defined
Modified:
projects/clangbsd/usr.bin/Makefile
Modified: projects/clangbsd/usr.bin/Makefile
==============================================================================
--- projects/clangbsd/usr.bin/Makefile Wed May 12 20:38:32 2010 (r208000)
+++ projects/clangbsd/usr.bin/Makefile Wed May 12 20:58:08 2010 (r208001)
@@ -277,10 +277,6 @@ _cpio= cpio
_calendar= calendar
.endif
-.if ${MK_CLANG} != "no"
-_clang= clang
-.endif
-
.if ${MK_HESIOD} != "no"
_hesinfo= hesinfo
.endif
@@ -350,6 +346,9 @@ _ul= ul
_ar= ar
_c89= c89
_c99= c99
+.if ${MK_CLANG} != "no"
+_clang= clang
+.endif
_compile_et= compile_et
_ctags= ctags
_file2c= file2c
More information about the svn-src-projects
mailing list