summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2017-11-28 22:06:37 -0800
committerGuy Harris <guy@alum.mit.edu>2017-11-28 22:06:37 -0800
commitde0c7fc746c37eb83e15a6890d30dc6f608e9d76 (patch)
treef800495501ec9462adefe150bb3a7a777aefbd91 /Makefile.in
parentdcca20dd391f15c5c63d3b033fb7d7749bb1d8cd (diff)
downloadtcpdump-de0c7fc746c37eb83e15a6890d30dc6f608e9d76.tar.gz
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.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index faa2abb9..1cdd0237 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -449,4 +449,4 @@ testlist:
echo $(TEST_DIST)
depend: $(GENSRC)
- $(MKDEP) -c $(CC) -m $(DEPENDENCY_CFLAG) $(DEFS) $(INCLS) $(SRC)
+ $(MKDEP) -c "$(CC)" -m "$(DEPENDENCY_CFLAG)" $(DEFS) $(INCLS) $(SRC)