[hackers] [libgrapheme] Pass proper options to wget || Laslo Hunhold

From: <git_AT_suckless.org>
Date: Sun, 31 May 2020 23:16:24 +0200 (CEST)

commit f8bb18d674283ffd63b87fd903fdc75bee4fc2fd
Author: Laslo Hunhold <dev_AT_frign.de>
AuthorDate: Sun May 31 23:13:08 2020 +0200
Commit: Laslo Hunhold <dev_AT_frign.de>
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 <dev_AT_frign.de>

diff --git a/Makefile b/Makefile
index 90ac401..7816aaf 100644
--- a/Makefile
+++ b/Makefile
_AT_@ -57,13 +57,13 @@ src/test.c: data/gbt.awk $(GBT) src/test_body.c
         cat src/test_body.c >> $_AT_
 
 $(GBP):
- wget -nc -O $_AT_ $(GBP_URL)
+ wget -O $_AT_ $(GBP_URL)
 
 $(EMO):
- wget -nc -O $_AT_ $(EMO_URL)
+ wget -O $_AT_ $(EMO_URL)
 
 $(GBT):
- wget -nc -O $_AT_ $(GBT_URL)
+ wget -O $_AT_ $(GBT_URL)
 
 install: all
         mkdir -p "$(DESTDIR)$(LIBPREFIX)"
Received on Sun May 31 2020 - 23:16:24 CEST

This archive was generated by hypermail 2.3.0 : Sun May 31 2020 - 23:24:33 CEST