Skip to content

Commit

Permalink
Fix broken config.sub dependency due to badly formed function call (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
jthat committed Mar 5, 2024
1 parent 7b32dbe commit ca7b5d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ca7b5d2

Please sign in to comment.