summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorBrian Gaeke <gaeke@uiuc.edu>2003-10-11 00:10:05 +0000
committerBrian Gaeke <gaeke@uiuc.edu>2003-10-11 00:10:05 +0000
commitab9585f38b432126909d3d0e1f54989cbc352ecf (patch)
treed23deb10bbe0a096b5abb84a8b3247939ea77d8e /test
parent4dd7b4fbcae838866c9668571909aef1eaf29830 (diff)
downloadllvm-ab9585f38b432126909d3d0e1f54989cbc352ecf.tar.gz
llvm-ab9585f38b432126909d3d0e1f54989cbc352ecf.tar.bz2
llvm-ab9585f38b432126909d3d0e1f54989cbc352ecf.tar.xz
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.) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9044 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/Makefile16
1 files changed, 8 insertions, 8 deletions
diff --git a/test/Makefile b/test/Makefile
index 5483e9ca5e..8eeebfbbb5 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -21,16 +21,16 @@ QMCLASSES=$(LLVM_OBJ_ROOT)/test/QMTest
# 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.