mirror of https://gitee.com/openkylin/libvirt.git
maint: update gnulib for syntax-check on BSD
In particular, this incorporates Roman's patches to allow 'make syntax-check' to work on BSD with its exec argv limitations that previously failed when trying to grep the large number of files present in libvirt. cfg.mk needs similar changes, but that will be tackled separately. Signed-off-by: Eric Blake <eblake@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
parent
4ec225fc4e
commit
7db886e71c
2
.gnulib
2
.gnulib
|
@ -1 +1 @@
|
||||||
Subproject commit 4652c7bafa60332145f1e05a7de5f48e1bc56226
|
Subproject commit 8089c00979a5b089cff592c6b91420e595657167
|
12
bootstrap
12
bootstrap
|
@ -1,6 +1,6 @@
|
||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
# Print a version string.
|
# Print a version string.
|
||||||
scriptversion=2018-10-13.05; # UTC
|
scriptversion=2019-01-04.17; # UTC
|
||||||
|
|
||||||
# Bootstrap this package from checked-out sources.
|
# Bootstrap this package from checked-out sources.
|
||||||
|
|
||||||
|
@ -963,6 +963,16 @@ fi
|
||||||
bootstrap_post_import_hook \
|
bootstrap_post_import_hook \
|
||||||
|| die "bootstrap_post_import_hook failed"
|
|| die "bootstrap_post_import_hook failed"
|
||||||
|
|
||||||
|
# Don't proceed if there are uninitialized submodules. In particular,
|
||||||
|
# the next step will remove dangling links, which might be links into
|
||||||
|
# uninitialized submodules.
|
||||||
|
#
|
||||||
|
# Uninitialized submodules are listed with an initial dash.
|
||||||
|
if $use_git && git submodule | grep '^-' >/dev/null; then
|
||||||
|
die "some git submodules are not initialized. " \
|
||||||
|
"Run 'git submodule init' and bootstrap again."
|
||||||
|
fi
|
||||||
|
|
||||||
# Remove any dangling symlink matching "*.m4" or "*.[ch]" in some
|
# Remove any dangling symlink matching "*.m4" or "*.[ch]" in some
|
||||||
# gnulib-populated directories. Such .m4 files would cause aclocal to fail.
|
# gnulib-populated directories. Such .m4 files would cause aclocal to fail.
|
||||||
# The following requires GNU find 4.2.3 or newer. Considering the usual
|
# The following requires GNU find 4.2.3 or newer. Considering the usual
|
||||||
|
|
Loading…
Reference in New Issue