summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBob Wilson <bob.wilson@apple.com>2014-01-17 00:40:39 +0000
committerBob Wilson <bob.wilson@apple.com>2014-01-17 00:40:39 +0000
commit008425f5da940a5f696f90db72dae402188e165b (patch)
treeaf8e3325e36df2cae1ad87fbadfe4b596b1d2510 /Makefile
parente82dec5c0f6708164242192cb3c9f43e2fc6ec36 (diff)
downloadllvm-008425f5da940a5f696f90db72dae402188e165b.tar.gz
llvm-008425f5da940a5f696f90db72dae402188e165b.tar.bz2
llvm-008425f5da940a5f696f90db72dae402188e165b.tar.xz
Fix bad variable syntax in r199413
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@199447 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5cb38d1e30..cfca73afc4 100644
--- a/Makefile
+++ b/Makefile
@@ -115,7 +115,7 @@ cross-compile-build-tools:
unset SDKROOT ; \
unset UNIVERSAL_SDK_PATH ; \
configure_opts= ; \
- if test "$ENABLE_LIBCPP" -ne 0 ; then \
+ if test "$(ENABLE_LIBCPP)" -ne 0 ; then \
configure_opts="$$configure_opts --enable-libcpp"; \
fi; \
$(PROJ_SRC_DIR)/configure --build=$(BUILD_TRIPLE) \