aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2017-11-28 21:53:34 -0800
committerGuy Harris <guy@alum.mit.edu>2017-11-28 21:53:34 -0800
commitf3de753c30b7b70cb773e19a1fe36fb4ecb50384 (patch)
treeca2ef657ec92b43f5953e5c86291ef850dda8a5e /tests
parenta25389e193b0865cf1746d38b00049ce226e0ece (diff)
Fix mkdep invocations.
CC is not guaranteed to be space-free; quote it. DEPENDENCY_CFLAG is also not guaranteed to be space-free; quote it. It's supposed to be passed to mkdep as the argument to the -m flag; pass it as that argument.
Diffstat (limited to 'tests')
-rw-r--r--tests/Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Makefile.in b/tests/Makefile.in
index c65a455f..2e35428e 100644
--- a/tests/Makefile.in
+++ b/tests/Makefile.in
@@ -151,4 +151,4 @@ tags: $(TAGFILES)
ctags -wtd $(TAGFILES)
depend:
- ../$(MKDEP) -c $(CC) -m $(CFLAGS) $(DEPENDENCY_CFLAG) $(DEFS) $(INCLS) $(SRC)
+ ../$(MKDEP) -c "$(CC)" -m "$(DEPENDENCY_CFLAG)" $(CFLAGS) $(DEFS) $(INCLS) $(SRC)