From: Edwin Vane Date: Fri, 1 Mar 2013 19:58:58 +0000 (+0000) Subject: No need to force-create clang-tools-extra lit.site.cfg X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=510c341517b4223eb546e74c7e114b25fb020ff3;p=platform%2Fupstream%2Fllvm.git No need to force-create clang-tools-extra lit.site.cfg The make (all) target takes care of creating lit configs and auto-generating tests. The problem with the original 'lit.site.cfg' target is it's not recursive and doesn't fully create everything necessary for testing clang-tools-extra. llvm-svn: 176374 --- diff --git a/llvm/test/Makefile b/llvm/test/Makefile index fc8ec08..b7b873c 100644 --- a/llvm/test/Makefile +++ b/llvm/test/Makefile @@ -60,11 +60,6 @@ endif ifeq ($(shell test -f $(PROJ_OBJ_DIR)/../tools/clang/tools/extra/Makefile && echo OK), OK) LIT_ALL_TESTSUITES += $(PROJ_OBJ_DIR)/../tools/clang/tools/extra/test - -# Force creation of Clang Tools' lit.site.cfg. -clang-tools-site-cfg: FORCE - $(MAKE) -C $(PROJ_OBJ_DIR)/../tools/clang/tools/extra/test lit.site.cfg -extra-site-cfgs:: clang-tools-site-cfg endif endif endif