Skip to content
Snippets Groups Projects
Verified Commit 984823d2 authored by Jeremy Soller's avatar Jeremy Soller
Browse files

Change d.recipe to u.recipe

parent adeac79e
No related branches found
No related tags found
No related merge requests found
...@@ -33,32 +33,32 @@ else ...@@ -33,32 +33,32 @@ else
./clean.sh $* ./clean.sh $*
endif endif
# Invoke unfetch.sh for a single target # Invoke fetch.sh for a single target
d.%: $(FSTOOLS_TAG) FORCE f.%: $(FSTOOLS_TAG) FORCE
ifeq ($(PODMAN_BUILD),1) ifeq ($(PODMAN_BUILD),1)
$(PODMAN_RUN) $(MAKE) $@ $(PODMAN_RUN) $(MAKE) $@
else else
export PATH="$(PREFIX_PATH):$$PATH" && \ export PATH="$(PREFIX_PATH):$$PATH" && \
cd cookbook && \ cd cookbook && \
./unfetch.sh $* ./fetch.sh $*
endif endif
# Invoke fetch.sh for a single target # Invoke repo.sh for a single target
f.%: $(FSTOOLS_TAG) FORCE r.%: $(FSTOOLS_TAG) FORCE
ifeq ($(PODMAN_BUILD),1) ifeq ($(PODMAN_BUILD),1)
$(PODMAN_RUN) $(MAKE) $@ $(PODMAN_RUN) $(MAKE) $@
else else
export PATH="$(PREFIX_PATH):$$PATH" && \ export PATH="$(PREFIX_PATH):$$PATH" && \
cd cookbook && \ cd cookbook && \
./fetch.sh $* ./repo.sh $*
endif endif
# Invoke repo.sh for a single target # Invoke unfetch.sh for a single target
r.%: $(FSTOOLS_TAG) FORCE u.%: $(FSTOOLS_TAG) FORCE
ifeq ($(PODMAN_BUILD),1) ifeq ($(PODMAN_BUILD),1)
$(PODMAN_RUN) $(MAKE) $@ $(PODMAN_RUN) $(MAKE) $@
else else
export PATH="$(PREFIX_PATH):$$PATH" && \ export PATH="$(PREFIX_PATH):$$PATH" && \
cd cookbook && \ cd cookbook && \
./repo.sh $* ./unfetch.sh $*
endif endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment