From 983ed43f516dc75c0d650deb4db5eed89acd0d60 Mon Sep 17 00:00:00 2001 From: Kir Kolyshkin Date: Sat, 7 Jan 2017 15:52:50 -0800 Subject: [PATCH] criu/Makefile: fix criu/arch/* rebuild Problem: if we do touch criu/arch/x86/cpu.c nothing is being rebuilt. For detailed analisys, see the previous commit ("criu/Makefile: fix rebuilding criu/pie/pie.lib.a"). Note there are other targets in criu/Makefile where one might want to add .FORCE to, but it's not needed as they all depend on another target which itself is marked as .PHONY. travis-ci: success for Makefiles: fix deps checking Signed-off-by: Kir Kolyshkin Reviewed-by: Dmitry Safonov Signed-off-by: Pavel Emelyanov Signed-off-by: Andrei Vagin --- criu/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/criu/Makefile b/criu/Makefile index ccf77805e..5c19d0af2 100644 --- a/criu/Makefile +++ b/criu/Makefile @@ -44,7 +44,7 @@ include $(SRC_DIR)/criu/Makefile.packages # # Architecture dependent part. ARCH-LIB := $(ARCH_DIR)/crtools.built-in.o -$(ARCH-LIB): +$(ARCH-LIB): .FORCE $(Q) $(MAKE) $(build)=$(ARCH_DIR) all #