diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2021-02-16 18:24:19 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2021-02-16 18:24:19 +0100 |
commit | 351b7328520c16730ceb46e5acae16038c42185e (patch) | |
tree | fae21fd5c94f3c3ed0202a95c9ada705482e647b /tools/update-upstreams.sh | |
parent | ad38bc6ecb80ddeb562841b33258dd53659b1da6 (diff) |
New upstream version 1.0.32upstream/1.0.32
Diffstat (limited to 'tools/update-upstreams.sh')
-rwxr-xr-x | tools/update-upstreams.sh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tools/update-upstreams.sh b/tools/update-upstreams.sh index 3a5e94a..93fbc20 100755 --- a/tools/update-upstreams.sh +++ b/tools/update-upstreams.sh @@ -1,6 +1,6 @@ #!/bin/sh -u # tools/update-upstreams.sh -- files to their latest version -# Copyright (C) 2017, 2019 Olaf Meeuwissen +# Copyright (C) 2017, 2019, 2021 Olaf Meeuwissen # # License: GPL-3.0+ @@ -19,3 +19,8 @@ CONFIG_BASE_URL=https://git.savannah.gnu.org/cgit/config.git/plain for file in config.guess config.sub; do fetch $CONFIG_BASE_URL/$file done + +GNULIB_BASE_URL=https://git.savannah.gnu.org/cgit/gnulib.git/plain +fetch $GNULIB_BASE_URL/build-aux/git-version-gen +mv git-version-gen tools/ +chmod 0755 tools/git-version-gen |