]> Savannah Git Hosting - gnulib.git/commitdiff
tweaks
authorBruce Korb <bkorb@gnu.org>
Thu, 30 Dec 2010 22:01:30 +0000 (14:01 -0800)
committerBruce Korb <bkorb@gnu.org>
Thu, 30 Dec 2010 22:01:30 +0000 (14:01 -0800)
ChangeLog
build-aux/git-version-gen
libposix/configure.ac
libposix/mk-tarball

index 29f7bc6a3f64037ddcab87eadee939fdb42f83e2..74a64b4880e912275d9aaec040522a8a9fb2649c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2010-12-30  Bruce Korb  <bkorb@gnu.org>
+
+       * libposix/bootstrap (posix_list): remove unnecessary temp file
+
 2010-12-13  Pádraig Brady <P@draigBrady.com>
 
        read-file: Improve handling of large files
index 7ae51572722a7185f7492d4c5582039cb22c9b8b..3c6900e59a2a39b620527d48754cf4925550b232 100755 (executable)
@@ -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.
 #
index 2d58cdfe998e45ad4ec9574219879a37634bfec8..b1bd65281032b84646f48ed2297d74310d5a5401 100644 (file)
@@ -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])
index 7da3179814b71c93c60d639adcb397ab108ab5f7..09e00f76153b9bb7cf0240ac0d020b2b7c5cc18a 100755 (executable)
@@ -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()