[llvm-commits] CVS: llvm/test/Makefile
Brian Gaeke
gaeke at cs.uiuc.edu
Fri Oct 10 19:11:01 PDT 2003
Changes in directory llvm/test:
Makefile updated: 1.45 -> 1.46
---
Log message:
Quote qmtest args in $(CONTEXT).
I don't remember precisely what bug this fixed, but I remember that
it fixed a bug. Sorry. (I think one of these args had a Funny Shell Character
in it, or a space, or something, in my last build, and this seemed
like the obvious fix.)
---
Diffs of the changes: (+8 -8)
Index: llvm/test/Makefile
diff -u llvm/test/Makefile:1.45 llvm/test/Makefile:1.46
--- llvm/test/Makefile:1.45 Fri Oct 10 15:24:56 2003
+++ llvm/test/Makefile Fri Oct 10 19:10:05 2003
@@ -21,16 +21,16 @@
# This is configuration information used by the test suite. In QM Test, it's
# called a 'context.'
#
-CONTEXT= -c srcroot=$(LLVM_SRC_ROOT) \
- -c buildroot=$(LLVM_OBJ_ROOT) \
- -c buildtype=$(CONFIGURATION) \
- -c tmpdir=$(LLVM_OBJ_ROOT)/test/tmp \
- -c coresize=0 \
- -c cc=$(CC) \
- -c cxx=$(CXX) \
+CONTEXT= -c "srcroot=$(LLVM_SRC_ROOT)" \
+ -c "buildroot=$(LLVM_OBJ_ROOT)" \
+ -c "buildtype=$(CONFIGURATION)" \
+ -c "tmpdir=$(LLVM_OBJ_ROOT)/test/tmp" \
+ -c "coresize=0" \
+ -c "cc=$(CC)" \
+ -c "cxx=$(CXX)" \
-c "llvmgcc=$(LLVMGCC)" \
-c "llvmgxx=$(LLVMGXX)" \
- -c make=$(MAKE)
+ -c "make=$(MAKE)"
#
# Location of the QMTest program.
More information about the llvm-commits
mailing list