From: Bruce Korb Date: Thu, 30 Dec 2010 22:01:30 +0000 (-0800) Subject: tweaks X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=b93eb8f8c0621511e85f0f944a5820caad396d4a;p=gnulib.git tweaks --- diff --git a/ChangeLog b/ChangeLog index 29f7bc6a3f..74a64b4880 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2010-12-30 Bruce Korb + + * libposix/bootstrap (posix_list): remove unnecessary temp file + 2010-12-13 Pádraig Brady read-file: Improve handling of large files diff --git a/build-aux/git-version-gen b/build-aux/git-version-gen index 7ae5157272..3c6900e59a 100755 --- a/build-aux/git-version-gen +++ b/build-aux/git-version-gen @@ -1,6 +1,6 @@ #!/bin/sh # Print a version string. -scriptversion=2010-12-14.19; # UTC +scriptversion=2010-12-30.20; # UTC # Copyright (C) 2007-2010 Free Software Foundation, Inc. # diff --git a/libposix/configure.ac b/libposix/configure.ac index 2d58cdfe99..b1bd652810 100644 --- a/libposix/configure.ac +++ b/libposix/configure.ac @@ -1,5 +1,5 @@ AC_INIT([GNU libposix], - m4_esyscmd([./git-version-gen .tarball-version 's/dirty/modified/']), + m4_esyscmd([./git-version-gen .tarball-version]), [bug-gnulib@gnu.org]) AS_BOX([Configuring AC_PACKAGE_TARNAME AC_PACKAGE_VERSION]) diff --git a/libposix/mk-tarball b/libposix/mk-tarball index 7da3179814..09e00f7615 100755 --- a/libposix/mk-tarball +++ b/libposix/mk-tarball @@ -57,13 +57,18 @@ func_init() test $# -eq 1 && exit 0 ;; esac + + case "$-" in + *x* ) dashx=-x ;; + * ) dashx= ;; + esac } func_bootstrap() { - - /bin/sh ./bootstrap \ - || func_die bootstrap failure + PS4='>bs> ' \ + /bin/sh ${dashx} ./bootstrap \ + || func_die bootstrap failure } func_mkdistro()