From 984823d22c223a886c2bc75b84d6f89239115923 Mon Sep 17 00:00:00 2001 From: Jeremy Soller <jackpot51@gmail.com> Date: Mon, 11 Sep 2023 11:22:27 -0600 Subject: [PATCH] Change d.recipe to u.recipe --- mk/repo.mk | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/mk/repo.mk b/mk/repo.mk index d387d4759..1e624b961 100644 --- a/mk/repo.mk +++ b/mk/repo.mk @@ -33,32 +33,32 @@ else ./clean.sh $* endif -# Invoke unfetch.sh for a single target -d.%: $(FSTOOLS_TAG) FORCE +# Invoke fetch.sh for a single target +f.%: $(FSTOOLS_TAG) FORCE ifeq ($(PODMAN_BUILD),1) $(PODMAN_RUN) $(MAKE) $@ else export PATH="$(PREFIX_PATH):$$PATH" && \ cd cookbook && \ - ./unfetch.sh $* + ./fetch.sh $* endif -# Invoke fetch.sh for a single target -f.%: $(FSTOOLS_TAG) FORCE +# Invoke repo.sh for a single target +r.%: $(FSTOOLS_TAG) FORCE ifeq ($(PODMAN_BUILD),1) $(PODMAN_RUN) $(MAKE) $@ else export PATH="$(PREFIX_PATH):$$PATH" && \ cd cookbook && \ - ./fetch.sh $* + ./repo.sh $* endif -# Invoke repo.sh for a single target -r.%: $(FSTOOLS_TAG) FORCE +# Invoke unfetch.sh for a single target +u.%: $(FSTOOLS_TAG) FORCE ifeq ($(PODMAN_BUILD),1) $(PODMAN_RUN) $(MAKE) $@ else export PATH="$(PREFIX_PATH):$$PATH" && \ cd cookbook && \ - ./repo.sh $* + ./unfetch.sh $* endif -- GitLab