commit-inetutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] GNU Inetutils branch, master, updated. inetutils-1_7-50-g85394f7


From: Giuseppe Scrivano
Subject: [SCM] GNU Inetutils branch, master, updated. inetutils-1_7-50-g85394f7
Date: Fri, 14 May 2010 09:37:27 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Inetutils ".

The branch, master has been updated
       via  85394f7bf791cb6b82132d4317e05d185d86af4e (commit)
      from  874e49cee08963f8fe774433fd417414f33f817b (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit/inetutils.git/commit/?id=85394f7bf791cb6b82132d4317e05d185d86af4e


commit 85394f7bf791cb6b82132d4317e05d185d86af4e
Author: Giuseppe Scrivano <address@hidden>
Date:   Fri May 14 11:35:37 2010 +0200

    bootstrap: ensure gnulib_path is not empty.

diff --git a/ChangeLog b/ChangeLog
index 763a439..e411c8b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2010-05-14  Giuseppe Scrivano  <address@hidden>
+
+       * bootstrap (gnulib_path): Default to "gnulib" if it doesn't have a
+       value.  Redirect "git clone" stderr to stdout.
+
 2010-05-12  Giuseppe Scrivano  <address@hidden>
 
        * bootstrap: Remove test to skip autoheader.
diff --git a/bootstrap b/bootstrap
index 551b703..5a6d418 100755
--- a/bootstrap
+++ b/bootstrap
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Print a version string.
-scriptversion=2010-05-12.08; # UTC
+scriptversion=2010-05-14.09; # UTC
 
 # Bootstrap this package from checked-out sources.
 
@@ -410,6 +410,8 @@ git_modules_config () {
 
 gnulib_path=`git_modules_config submodule.gnulib.path`
 
+test -n "$gnulib_path" || gnulib_path="gnulib"
+
 # Get gnulib files.
 
 case ${GNULIB_SRCDIR--} in
@@ -424,7 +426,8 @@ case ${GNULIB_SRCDIR--} in
 
     trap cleanup_gnulib 1 2 13 15
 
-    git clone -h|grep -- --depth > /dev/null && shallow='--depth 2' || shallow=
+    git clone 2>&1 -h|grep -- --depth > /dev/null \
+        && shallow='--depth 2' || shallow=
     git clone $shallow git://git.sv.gnu.org/gnulib "$gnulib_path" ||
       cleanup_gnulib
 

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog |    5 +++++
 bootstrap |    7 +++++--
 2 files changed, 10 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
GNU Inetutils 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]