From ca7b5d2bef17ff606f1ef9bbc262ff66c7d86866 Mon Sep 17 00:00:00 2001 From: Jason Thatcher Date: Tue, 5 Mar 2024 10:41:32 +1000 Subject: [PATCH] Fix broken config.sub dependency due to badly formed function call (#2) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 71e7ef9e..1a9c707d 100644 --- a/Makefile +++ b/Makefile @@ -150,7 +150,7 @@ musl-git-%: mv $@.tmp/$(patsubst %.orig,%,$@) $@ rm -rf $@.tmp -%: %.orig | $(ifneq ($(CONFIG_SUB_REV),),$(SOURCES)/config.sub,) +%: %.orig | $(if $(CONFIG_SUB_REV),$(SOURCES)/config.sub) case "$@" in */*) exit 1 ;; esac rm -rf $@.tmp mkdir $@.tmp