summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Blake <eblake@redhat.com>2013-04-01 12:49:05 -0600
committerEric Blake <eblake@redhat.com>2013-09-18 15:04:30 -0600
commitaaee109fbbc050d3eef86ba92c2d6170c6072ce7 (patch)
tree842ed96fb777d62cd36552b23cc8014c3595afdd
parent6a98ac9000c9d6b36a98ab6409c4cffbba1c448a (diff)
downloadlibvirt-aaee109fbbc050d3eef86ba92c2d6170c6072ce7.tar.gz
maint: update to latest gnulib
While this update doesn't address any reported problems in libvirt, doing a post-release update to latest gnulib makes it easier to stay in sync with best upstream practices. * .gnulib: Update to latest. * bootstrap: Resynchronize. (cherry picked from commit d7468b7d4736de9a25d2b22c0bdf540026601d1f)
m---------.gnulib0
-rwxr-xr-xbootstrap8
2 files changed, 6 insertions, 2 deletions
diff --git a/.gnulib b/.gnulib
-Subproject 819b1c38b9abd94d7d1ca2a77bbe16053b75029
+Subproject 076ac82d1d7f4df54630f1b4917b3c14f227f03
diff --git a/bootstrap b/bootstrap
index bee7765fed..96f1e76252 100755
--- a/bootstrap
+++ b/bootstrap
@@ -1,6 +1,6 @@
#! /bin/sh
# Print a version string.
-scriptversion=2013-01-20.16; # UTC
+scriptversion=2013-03-08.16; # UTC
# Bootstrap this package from checked-out sources.
@@ -630,9 +630,13 @@ esac
if $bootstrap_sync; then
cmp -s "$0" "$GNULIB_SRCDIR/build-aux/bootstrap" || {
echo "$0: updating bootstrap and restarting..."
+ case $(sh -c 'echo "$1"' -- a) in
+ a) ignored=--;;
+ *) ignored=ignored;;
+ esac
exec sh -c \
'cp "$1" "$2" && shift && exec "${CONFIG_SHELL-/bin/sh}" "$@"' \
- -- "$GNULIB_SRCDIR/build-aux/bootstrap" \
+ $ignored "$GNULIB_SRCDIR/build-aux/bootstrap" \
"$0" "$@" --no-bootstrap-sync
}
fi