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.)

llvm-svn: 9044
This commit is contained in:
Brian Gaeke 2003-10-11 00:10:05 +00:00
parent 3f647b8bc0
commit bf7bbf1881
1 changed files with 8 additions and 8 deletions

View File

@ -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.