makefile: make sure that sign file is downloaded
This commit is contained in:
parent
e8d88303bf
commit
bc09cf4cf8
6
Makefile
6
Makefile
@ -50,11 +50,15 @@ HASH_FILE :=${SRC_FILE}.sha1sum
|
|||||||
URL := $(SRC_BASEURL)/$(SRC_FILE)
|
URL := $(SRC_BASEURL)/$(SRC_FILE)
|
||||||
URL_SIGN := $(SRC_BASEURL)/$(SIGN_FILE)
|
URL_SIGN := $(SRC_BASEURL)/$(SIGN_FILE)
|
||||||
|
|
||||||
get-sources: $(SRC_FILE)
|
get-sources: $(SRC_FILE) $(SIGN_FILE)
|
||||||
|
|
||||||
$(SRC_FILE):
|
$(SRC_FILE):
|
||||||
@echo -n "Downloading $(URL)... "
|
@echo -n "Downloading $(URL)... "
|
||||||
@wget -q -N $(URL)
|
@wget -q -N $(URL)
|
||||||
|
@echo "OK."
|
||||||
|
|
||||||
|
$(SIGN_FILE):
|
||||||
|
@echo -n "Downloading $(URL_SIGN)... "
|
||||||
@wget -q -N $(URL_SIGN)
|
@wget -q -N $(URL_SIGN)
|
||||||
@echo "OK."
|
@echo "OK."
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user