From 5f1c12a1cf241919ae2b157f91d5a730646745f4 Mon Sep 17 00:00:00 2001 From: Jason Perkins Date: Tue, 4 Feb 2014 15:27:51 -0500 Subject: [PATCH] Fix makefile unit tests broken by previous commits --- tests/actions/make/cpp/test_make_pch.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/actions/make/cpp/test_make_pch.lua b/tests/actions/make/cpp/test_make_pch.lua index 99e0fc5d..ebe35c8b 100644 --- a/tests/actions/make/cpp/test_make_pch.lua +++ b/tests/actions/make/cpp/test_make_pch.lua @@ -91,6 +91,7 @@ prepareRules() test.capture [[ ifneq (,$(PCH)) +.NOTPARALLEL: $(GCH) $(PCH) $(GCH): $(PCH) @echo $(notdir $<) $(SILENT) $(CXX) -x c++-header $(ALL_CXXFLAGS) -MMD -MP $(DEFINES) $(INCLUDES) -o "$@" -MF "$(@:%.gch=%.d)" -c "$<" @@ -109,6 +110,7 @@ endif prepareRules() test.capture [[ ifneq (,$(PCH)) +.NOTPARALLEL: $(GCH) $(PCH) $(GCH): $(PCH) @echo $(notdir $<) $(SILENT) $(CC) -x c-header $(ALL_CFLAGS) -MMD -MP $(DEFINES) $(INCLUDES) -o "$@" -MF "$(@:%.gch=%.d)" -c "$<"