aboutsummaryrefslogtreecommitdiff
path: root/Makefile.programs
diff options
context:
space:
mode:
authorJack Carter <jack.carter@imgtec.com>2013-10-11 19:33:58 +0000
committerJack Carter <jack.carter@imgtec.com>2013-10-11 19:33:58 +0000
commit11b80eb3bff5c732e01fa225b6f34e9ee5862034 (patch)
treed632f524e08a29e5550f50c7d7774fb94f4843bd /Makefile.programs
parentdd302761be829ff7910241dee8fda560d1809dcc (diff)
[projects/test-suite] Fix RUNSAFELY make variable definition.
To allow the RUNUNDER script to be run with parameters, the the definition of RUNSAFELY needs to quote the interpolation of RUNUNDER. Patch by Doug Gilmore git-svn-id: https://llvm.org/svn/llvm-project/test-suite/trunk@192485 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.programs')
-rw-r--r--Makefile.programs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.programs b/Makefile.programs
index ce380420..3662514e 100644
--- a/Makefile.programs
+++ b/Makefile.programs
@@ -111,7 +111,7 @@ RUNSAFELY := $(RUNSAFELY) -rp "$(REMOTE_PORT)"
endif
ifdef RUNUNDER
-RUNSAFELY := $(RUNSAFELY) -u $(RUNUNDER)
+RUNSAFELY := $(RUNSAFELY) -u "$(RUNUNDER)"
ifdef EXECUTION_ENVIRONMENT_OVERRIDES
$(error "cannot use both RUNUNDER and EXECUTION_ENVIRONMENT_OVERRIDES")
endif