diff options
author | Guy Harris <guy@alum.mit.edu> | 2017-11-28 22:06:37 -0800 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2017-11-28 22:06:37 -0800 |
commit | de0c7fc746c37eb83e15a6890d30dc6f608e9d76 (patch) | |
tree | f800495501ec9462adefe150bb3a7a777aefbd91 /Makefile.in | |
parent | dcca20dd391f15c5c63d3b033fb7d7749bb1d8cd (diff) | |
download | tcpdump-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.in | 2 |
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) |