diff options
author | Eric Blake <eblake@redhat.com> | 2011-05-13 12:55:44 -0600 |
---|---|---|
committer | Eric Blake <eblake@redhat.com> | 2011-05-18 08:31:33 -0600 |
commit | f3cfc99e794bd77479878fc224c6581b61d57dbd (patch) | |
tree | 372d02ad89c1800e139af0eb6d4e3b01944171c4 | |
parent | Add support for 'passthru' mode for direct network interfaces (diff) | |
download | libvirt-f3cfc99e794bd77479878fc224c6581b61d57dbd.tar.gz libvirt-f3cfc99e794bd77479878fc224c6581b61d57dbd.tar.bz2 libvirt-f3cfc99e794bd77479878fc224c6581b61d57dbd.zip |
build: update to latest gnulib
* .gnulib: Update, for bootstrap and other fixes.
* bootstrap: Resynchronize with gnulib.
m--------- | .gnulib | 0 | ||||
-rwxr-xr-x | bootstrap | 12 |
2 files changed, 10 insertions, 2 deletions
diff --git a/.gnulib b/.gnulib -Subproject 64a5e38bced6c8f5117efbed95cdfd8ca133ed5 +Subproject 2c25c9ebe8db1415bfde25f0a451767332c8cf5 @@ -1,6 +1,6 @@ #! /bin/sh # Print a version string. -scriptversion=2011-05-11.17; # UTC +scriptversion=2011-05-16.16; # UTC # Bootstrap this package from checked-out sources. @@ -670,10 +670,18 @@ symlink_to_dir() cp -fp "$src" "$dst" } else + # Leave any existing symlink alone, if it already points to the source, + # so that broken build tools that care about symlink times + # aren't confused into doing unnecessary builds. Conversely, if the + # existing symlink's time stamp is older than the source, make it afresh, + # so that broken tools aren't confused into skipping needed builds. See + # <http://lists.gnu.org/archive/html/bug-gnulib/2011-05/msg00326.html>. test -h "$dst" && src_ls=`ls -diL "$src" 2>/dev/null` && set $src_ls && src_i=$1 && dst_ls=`ls -diL "$dst" 2>/dev/null` && set $dst_ls && dst_i=$1 && - test "$src_i" = "$dst_i" || { + test "$src_i" = "$dst_i" && + both_ls=`ls -dt "$src" "$dst"` && + test "X$both_ls" = "X$dst$nl$src" || { dot_dots= case $src in /*) ;; |