diff options
author | Marius Kintel <marius@kintel.net> | 2013-10-24 15:32:25 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2013-10-24 15:32:25 (GMT) |
commit | 54595cc9bfc64cb383790fb18efcdad16e8fe0b0 (patch) | |
tree | e1fa33057b44ce9f6d2bf4845f5c7d3ed19198c1 /scripts | |
parent | 9a28badc895158afeeff138e4f577e0c9dc43c27 (diff) |
fix llvm build
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/macosx-build-dependencies.sh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/macosx-build-dependencies.sh b/scripts/macosx-build-dependencies.sh index d91c1e5..994d2a1 100755 --- a/scripts/macosx-build-dependencies.sh +++ b/scripts/macosx-build-dependencies.sh @@ -8,7 +8,6 @@ # # Usage: macosx-build-dependencies.sh [-6lcd] # -6 Build only 64-bit binaries -# -c Force use of LLVM compiler # -l Force use of LLVM compiler # -c Force use of clang compiler # -d Build for deployment (if not specified, e.g. Sparkle won't be built) @@ -392,7 +391,7 @@ USING_LLVM=false USING_GCC=false USING_CLANG=false if $OPTION_LLVM; then - USING_LLCM=true + USING_LLVM=true elif $OPTION_GCC; then USING_GCC=true elif $OPTION_CLANG; then |