[cfe-commits] r122449 - /cfe/trunk/runtime/Makefile

Daniel Dunbar daniel at zuster.org
Wed Dec 22 14:23:39 PST 2010


Author: ddunbar
Date: Wed Dec 22 16:23:39 2010
New Revision: 122449

URL: http://llvm.org/viewvc/llvm-project?rev=122449&view=rev
Log:
build: Use CLANG_NO_RUNTIME=1 specifically, not just any definition.

Modified:
    cfe/trunk/runtime/Makefile

Modified: cfe/trunk/runtime/Makefile
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/runtime/Makefile?rev=122449&r1=122448&r2=122449&view=diff
==============================================================================
--- cfe/trunk/runtime/Makefile (original)
+++ cfe/trunk/runtime/Makefile Wed Dec 22 16:23:39 2010
@@ -28,7 +28,7 @@
 # Expect compiler-rt to be in llvm/projects/compiler-rt
 COMPILERRT_SRC_ROOT := $(LLVM_SRC_ROOT)/projects/compiler-rt
 
-ifndef CLANG_NO_RUNTIME
+ifneq ($(CLANG_NO_RUNTIME),1)
 ifeq ($(shell test -d $(COMPILERRT_SRC_ROOT) && echo OK),OK)
 
 # Select the compiler-rt configuration to use, and install directory.





More information about the cfe-commits mailing list