From d362f40bb0988dc7b46b56dc4f72b2195f47f479 Mon Sep 17 00:00:00 2001 From: nosamad Date: Mon, 15 Apr 2019 21:48:58 +0200 Subject: [PATCH] fixes initial download directory creation --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index ed8c134..83f997e 100644 --- a/Makefile +++ b/Makefile @@ -142,15 +142,15 @@ $(UBUNTU_TARGETS): CODENAME := $(UBUNTU_CODENAME) $(DEBIAN_TARGETS): CODENAME := $(DEBIAN_CODENAME) +$(FETCH_TARGETS): | $(FETCHDIR) + $(SILENT)$(call curl,$@,$(URL),$(MD5)) + $(OUTDIR)/docker/qemu-arm-static-$(QEMU_VERSION) : $(FETCHDIR)/qemu-arm-static-$(QEMU_VERSION) | $(OUTDIRS) $(SILENT) \ $(call echo_if_silent,cp $< $@) \ && cp $< $@ \ && chmod +x $@ -$(FETCH_TARGETS): | $(OUTDIRS) - $(SILENT)$(call curl,$@,$(URL),$(MD5)) - $(OUTDIR)/src/%: $(FETCHDIR)/%.tar.gz | $(OUTDIRS) $(SILENT) \ $(call echo_if_silent,tar -C $(dir $@) -xf $<) \