commit f8bb18d674283ffd63b87fd903fdc75bee4fc2fd
Author: Laslo Hunhold <[email protected]>
AuthorDate: Sun May 31 23:13:08 2020 +0200
Commit: Laslo Hunhold <[email protected]>
CommitDate: Sun May 31 23:13:08 2020 +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 <[email protected]>
diff --git a/Makefile b/Makefile
index 90ac401..7816aaf 100644
--- 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)"