Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJason Perkins <starkos@industriousone.com>2014-12-08 19:46:34 +0300
committerJason Perkins <starkos@industriousone.com>2014-12-08 19:46:34 +0300
commitc04a1a0f6c98c119febb3e1ac479dfe38dcaa279 (patch)
treef605065c1dcf6cf20117690e22cb45abb7bd90dc /tests
parent380953a882b9c7610e6949d79b9bff0996caa735 (diff)
Add missing quotes around PCH compile flags (h/t Daniel Gibson)
See comment at https://bitbucket.org/premake/premake-4.x/commits/7e583c84a367985227e0865bedfda6315416e288#comment-1468822
Diffstat (limited to 'tests')
-rw-r--r--tests/actions/make/test_make_pch.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/actions/make/test_make_pch.lua b/tests/actions/make/test_make_pch.lua
index 500f2ae..6d30ef1 100644
--- a/tests/actions/make/test_make_pch.lua
+++ b/tests/actions/make/test_make_pch.lua
@@ -100,7 +100,7 @@ $(GCH): $(PCH)
test.capture [[
$(OBJDIR)/main.o: main.cpp
@echo $(notdir $<)
- $(SILENT) $(CXX) $(ALL_CXXFLAGS) $(FORCE_INCLUDE) -o "$@" -MF $(@:%.o=%.d) -c "$<"
+ $(SILENT) $(CXX) $(ALL_CXXFLAGS) $(FORCE_INCLUDE) -o "$@" -MF "$(@:%.o=%.d)" -c "$<"
]]
end