From aa73ede1dc716ff1dc979b70fe7e5eaed989f6ab Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sun, 8 Aug 2021 22:20:03 -0700 Subject: [PATCH] build: update gnulib to latest --- bootstrap | 14 +++++++++++++- gnulib | 2 +- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/bootstrap b/bootstrap index c17a36f..7336598 100755 --- a/bootstrap +++ b/bootstrap @@ -1,6 +1,6 @@ #! /bin/sh # Print a version string. -scriptversion=2021-01-10.00; # UTC +scriptversion=2021-04-11.09; # UTC # Bootstrap this package from checked-out sources. @@ -115,6 +115,12 @@ Running without arguments will suffice in most cases. EOF } +copyright_year=`echo "$scriptversion" | sed -e 's/[^0-9].*//'` +copyright="Copyright (C) ${copyright_year} Free Software Foundation, Inc. +License GPLv3+: GNU GPL version 3 or later . +This is free software: you are free to change and redistribute it. +There is NO WARRANTY, to the extent permitted by law." + # warnf_ FORMAT-STRING ARG1... warnf_ () { @@ -337,6 +343,12 @@ do --help) usage exit;; + --version) + set -e + echo "bootstrap $scriptversion" + echo "$copyright" + exit 0 + ;; --gnulib-srcdir=*) GNULIB_SRCDIR=${option#--gnulib-srcdir=};; --skip-po) diff --git a/gnulib b/gnulib index a3a946f..1221876 160000 --- a/gnulib +++ b/gnulib @@ -1 +1 @@ -Subproject commit a3a946f670718d0dee5a7425ad5ac0a29fb46ea1 +Subproject commit 1221876a7aec2a59c824a9784f5ff24e96f5545b -- 2.11.4.GIT