[llvm] r199447 - Fix bad variable syntax in r199413

Bob Wilson bob.wilson at apple.com
Thu Jan 16 16:40:39 PST 2014


Author: bwilson
Date: Thu Jan 16 18:40:39 2014
New Revision: 199447

URL: http://llvm.org/viewvc/llvm-project?rev=199447&view=rev
Log:
Fix bad variable syntax in r199413

Modified:
    llvm/trunk/Makefile

Modified: llvm/trunk/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/Makefile?rev=199447&r1=199446&r2=199447&view=diff
==============================================================================
--- llvm/trunk/Makefile (original)
+++ llvm/trunk/Makefile Thu Jan 16 18:40:39 2014
@@ -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) \





More information about the llvm-commits mailing list