From 2a14199421769b63518e74c3f6eb830d4b1a551d Mon Sep 17 00:00:00 2001 From: Mahmoud Al-Qudsi Date: Wed, 18 Dec 2019 22:11:02 -0600 Subject: [PATCH] Replace pseudo `all` target with catch-all `%` This should fix the CI broken in-tree builds. --- GNUmakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GNUmakefile b/GNUmakefile index 246b2940e..b67dd736c 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -22,7 +22,7 @@ endif MAKE_DIR:=$(shell dirname $(realpath $(firstword $(MAKEFILE_LIST)))) ifeq ($(shell test -f $(MAKE_DIR)/Makefile && echo 1), 1) -all: +%: @+$(MAKE) -f $(MAKE_DIR)/Makefile $(MAKECMDGOALS) --no-print-directory else