2
0
Эх сурвалжийг харах

Avoid running cleanppulogs and ppulogs rules in parallel

(cherry picked from commit 8fa80295d0c9adb867aed5b018c1094ded82aef3)
Pierre Muller 1 жил өмнө
parent
commit
fdf93c5b29

+ 2 - 1
compiler/Makefile

@@ -4558,7 +4558,8 @@ cleanppulogs :
 cleanrtlppulogs :
 cleanrtlppulogs :
 	-$(RMPROG) $(RTLPPULOGLIST)
 	-$(RMPROG) $(RTLPPULOGLIST)
 testppudump :
 testppudump :
-	$(MAKE) cleanrtlppulogs cleanppulogs ppulogs rtlppulogs
+	$(MAKE) cleanrtlppulogs cleanppulogs
+	$(MAKE) ppulogs rtlppulogs
 localmake:=$(strip $(wildcard makefile.loc))
 localmake:=$(strip $(wildcard makefile.loc))
 ifdef localmake
 ifdef localmake
 include ./$(localmake)
 include ./$(localmake)

+ 2 - 1
compiler/Makefile.fpc

@@ -1029,7 +1029,8 @@ cleanrtlppulogs :
 	-$(RMPROG) $(RTLPPULOGLIST)
 	-$(RMPROG) $(RTLPPULOGLIST)
 
 
 testppudump :
 testppudump :
-	$(MAKE) cleanrtlppulogs cleanppulogs ppulogs rtlppulogs
+	$(MAKE) cleanrtlppulogs cleanppulogs
+	$(MAKE) ppulogs rtlppulogs
 
 
 #####################################################################
 #####################################################################
 # local user configurable file
 # local user configurable file

+ 2 - 1
packages/Makefile

@@ -1802,4 +1802,5 @@ ppuinfo :
 	echo RMPPULOG list is "$(RMPPULOGLIST)"
 	echo RMPPULOG list is "$(RMPPULOGLIST)"
 cleanppulogs : $(RMPPULOGLIST)
 cleanppulogs : $(RMPPULOGLIST)
 testppudump :
 testppudump :
-	$(MAKE) cleanppulogs ppulogs
+	$(MAKE) cleanppulogs
+	$(MAKE) ppulogs

+ 2 - 1
packages/Makefile.fpc

@@ -174,5 +174,6 @@ ppuinfo :
 cleanppulogs : $(RMPPULOGLIST)
 cleanppulogs : $(RMPPULOGLIST)
 
 
 testppudump :
 testppudump :
-        $(MAKE) cleanppulogs ppulogs
+	$(MAKE) cleanppulogs
+	$(MAKE) ppulogs
 
 

+ 2 - 1
utils/Makefile

@@ -2546,4 +2546,5 @@ ppuinfo :
 	echo PPULOG list is "$(PPULOGLIST)"
 	echo PPULOG list is "$(PPULOGLIST)"
 cleanppulogs : $(RMPPULOGLIST)
 cleanppulogs : $(RMPPULOGLIST)
 testppudump :
 testppudump :
-	$(MAKE) cleanppulogs ppulogs
+	$(MAKE) cleanppulogs
+	$(MAKE) ppulogs

+ 2 - 1
utils/Makefile.fpc

@@ -154,5 +154,6 @@ ppuinfo :
 cleanppulogs : $(RMPPULOGLIST)
 cleanppulogs : $(RMPPULOGLIST)
 
 
 testppudump :
 testppudump :
-        $(MAKE) cleanppulogs ppulogs
+	$(MAKE) cleanppulogs
+	$(MAKE) ppulogs