[llvm-commits] [llvm] r142100 - /llvm/trunk/test/Makefile

NAKAMURA Takumi geek4civic at gmail.com
Sat Oct 15 19:54:14 PDT 2011


Author: chapuni
Date: Sat Oct 15 21:54:14 2011
New Revision: 142100

URL: http://llvm.org/viewvc/llvm-project?rev=142100&view=rev
Log:
test/Makefile: Inspect $(PROJ_OBJ_ROOT)/tools/clang/Makefile instead of $(PROJ_SRC_ROOT)/tools/clang for "check-all".

Modified:
    llvm/trunk/test/Makefile

Modified: llvm/trunk/test/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Makefile?rev=142100&r1=142099&r2=142100&view=diff
==============================================================================
--- llvm/trunk/test/Makefile (original)
+++ llvm/trunk/test/Makefile Sat Oct 15 21:54:14 2011
@@ -59,7 +59,7 @@
 
 ifneq ($(strip $(filter check-local-all,$(MAKECMDGOALS))),)
 ifndef TESTSUITE
-ifeq ($(shell test -d $(PROJ_SRC_DIR)/../tools/clang && echo OK), OK)
+ifeq ($(shell test -f $(PROJ_OBJ_DIR)/../tools/clang/Makefile && echo OK), OK)
 LIT_ALL_TESTSUITES += $(PROJ_OBJ_DIR)/../tools/clang/test
 
 # Force creation of Clang's lit.site.cfg.





More information about the llvm-commits mailing list