Skip to content

Commit ca403f6

Browse files
committed
gnulib: update
1 parent 5c554ea commit ca403f6

File tree

4 files changed

+18
-2
lines changed

4 files changed

+18
-2
lines changed

bootstrap

+13-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /bin/sh
22
# Print a version string.
3-
scriptversion=2021-01-10.00; # UTC
3+
scriptversion=2021-04-11.09; # UTC
44

55
# Bootstrap this package from checked-out sources.
66

@@ -115,6 +115,12 @@ Running without arguments will suffice in most cases.
115115
EOF
116116
}
117117

118+
copyright_year=`echo "$scriptversion" | sed -e 's/[^0-9].*//'`
119+
copyright="Copyright (C) ${copyright_year} Free Software Foundation, Inc.
120+
License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>.
121+
This is free software: you are free to change and redistribute it.
122+
There is NO WARRANTY, to the extent permitted by law."
123+
118124
# warnf_ FORMAT-STRING ARG1...
119125
warnf_ ()
120126
{
@@ -337,6 +343,12 @@ do
337343
--help)
338344
usage
339345
exit;;
346+
--version)
347+
set -e
348+
echo "bootstrap $scriptversion"
349+
echo "$copyright"
350+
exit 0
351+
;;
340352
--gnulib-srcdir=*)
341353
GNULIB_SRCDIR=${option#--gnulib-srcdir=};;
342354
--skip-po)

gnulib

Submodule gnulib updated from e639e55 to 7e3a9c5

lib/.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,8 @@
190190
/hash-triple.h
191191
/hash.c
192192
/hash.h
193+
/ialloc.c
194+
/ialloc.h
193195
/iconv.c
194196
/iconv.h
195197
/iconv.in.h
@@ -304,6 +306,7 @@
304306
/readline.h
305307
/readlink.c
306308
/realloc.c
309+
/reallocarray.c
307310
/ref-add.sed
308311
/ref-del.sed
309312
/relocatable.c

m4/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,7 @@
174174
/readline.m4
175175
/readlink.m4
176176
/realloc.m4
177+
/reallocarray.m4
177178
/relocatable-lib.m4
178179
/relocatable.m4
179180
/rename.m4

0 commit comments

Comments
 (0)