Change d.recipe to u.recipe
This commit is contained in:
parent
adeac79e3e
commit
984823d22c
20
mk/repo.mk
20
mk/repo.mk
|
@ -33,16 +33,6 @@ else
|
||||||
./clean.sh $*
|
./clean.sh $*
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Invoke unfetch.sh for a single target
|
|
||||||
d.%: $(FSTOOLS_TAG) FORCE
|
|
||||||
ifeq ($(PODMAN_BUILD),1)
|
|
||||||
$(PODMAN_RUN) $(MAKE) $@
|
|
||||||
else
|
|
||||||
export PATH="$(PREFIX_PATH):$$PATH" && \
|
|
||||||
cd cookbook && \
|
|
||||||
./unfetch.sh $*
|
|
||||||
endif
|
|
||||||
|
|
||||||
# Invoke fetch.sh for a single target
|
# Invoke fetch.sh for a single target
|
||||||
f.%: $(FSTOOLS_TAG) FORCE
|
f.%: $(FSTOOLS_TAG) FORCE
|
||||||
ifeq ($(PODMAN_BUILD),1)
|
ifeq ($(PODMAN_BUILD),1)
|
||||||
|
@ -62,3 +52,13 @@ else
|
||||||
cd cookbook && \
|
cd cookbook && \
|
||||||
./repo.sh $*
|
./repo.sh $*
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
# 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 && \
|
||||||
|
./unfetch.sh $*
|
||||||
|
endif
|
||||||
|
|
Loading…
Reference in a new issue