commit f8bb18d674283ffd63b87fd903fdc75bee4fc2fd
parent 3b48d9b0e2e59c771428518ac65999907f72e2cc
Author: Laslo Hunhold <dev@frign.de>
Date: Sun, 31 May 2020 23:13:08 +0200
Pass proper options to wget
With no-clobber active, it refuses to overwrite existing files,
even when make is invoked with -B.
GNU wget is just a big mess, but is that much of a surprise?
Signed-off-by: Laslo Hunhold <dev@frign.de>
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/Makefile b/Makefile
@@ -57,13 +57,13 @@ src/test.c: data/gbt.awk $(GBT) src/test_body.c
cat src/test_body.c >> $@
$(GBP):
- wget -nc -O $@ $(GBP_URL)
+ wget -O $@ $(GBP_URL)
$(EMO):
- wget -nc -O $@ $(EMO_URL)
+ wget -O $@ $(EMO_URL)
$(GBT):
- wget -nc -O $@ $(GBT_URL)
+ wget -O $@ $(GBT_URL)
install: all
mkdir -p "$(DESTDIR)$(LIBPREFIX)"