Add d.package target for unfetching, update cookbook
This commit is contained in:
parent
0207a9b982
commit
4400396b09
2
cookbook
2
cookbook
|
@ -1 +1 @@
|
||||||
Subproject commit 1cc47128b2bf21fdf6fff4348c05fbce6348338f
|
Subproject commit ddab2cd9e8caf4097e6e489138536bd7e5f2e817
|
10
mk/repo.mk
10
mk/repo.mk
|
@ -33,6 +33,16 @@ 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)
|
||||||
|
|
Loading…
Reference in a new issue