From de0c7fc746c37eb83e15a6890d30dc6f608e9d76 Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Tue, 28 Nov 2017 22:06:37 -0800 Subject: [PATCH] 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. --- Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.39.5