[llvm-commits] [test-suite] r163019 - /test-suite/trunk/Makefile.config.in

Bill Wendling isanbard at gmail.com
Fri Aug 31 13:20:36 PDT 2012


Author: void
Date: Fri Aug 31 15:20:36 2012
New Revision: 163019

URL: http://llvm.org/viewvc/llvm-project?rev=163019&view=rev
Log:
Put variable in quotes to pick up any command line options that may have been used.

Modified:
    test-suite/trunk/Makefile.config.in

Modified: test-suite/trunk/Makefile.config.in
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/Makefile.config.in?rev=163019&r1=163018&r2=163019&view=diff
==============================================================================
--- test-suite/trunk/Makefile.config.in (original)
+++ test-suite/trunk/Makefile.config.in Fri Aug 31 15:20:36 2012
@@ -71,8 +71,8 @@
 SourceDir=$(PROJ_SRC_DIR)
 endif
 
-ORIGINAL_CC := $(CC)
-ORIGINAL_CXX := $(CC)
+ORIGINAL_CC := "$(CC)"
+ORIGINAL_CXX := "$(CC)"
 
 ifdef TARGET_ARCH
 ARCH := $(TARGET_ARCH)





More information about the llvm-commits mailing list