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 Libtool".

The branch, master has been updated
       via  70ff0e04c9dda19b74c88005abed3c1ca4adc3fc (commit)
      from  525cddd2bcea4c565d6dd1d2d55dd1de1a476b67 (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 -----------------------------------------------------------------
commit 70ff0e04c9dda19b74c88005abed3c1ca4adc3fc
Author: Gary V. Vaughan <g...@gnu.org>
Date:   Mon Jan 27 15:04:53 2014 +1300

    bootstrap: use `-d .git` to check whether we are in a git tree.
    
    * gl/build-aux/bootstrap.in (func_require_git): .git is not a
    regular file, use -d to check its existence.
    * bootstrap: Regenerate.
    * THANKS: Add Bruce Korb.
    Reported by Bruce Korb
    
    Copyright-paperwork-exempt: Yes
    Signed-off-by: Gary V. Vaughan <g...@gnu.org>

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

Summary of changes:
 THANKS                    |    1 +
 bootstrap                 |    4 ++--
 gl/build-aux/bootstrap.in |    4 ++--
 3 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/THANKS b/THANKS
index de0cfde..63d3ea2 100644
--- a/THANKS
+++ b/THANKS
@@ -78,6 +78,7 @@
   Brad Smith                   b...@comstyle.com
   Brent Leback                 brent.leb...@st.com
   Brian Barrett                        brbar...@osl.iu.edu
+  Bruce Korb                   bruce.k...@gmail.com
   Bruno Haible                 hai...@ilog.fr
   Brice De Bruyne              bric...@gmail.com
   Camilo La Rota               camilo.lar...@ens-lyon.fr
diff --git a/bootstrap b/bootstrap
index 2094e73..4e24dbf 100755
--- a/bootstrap
+++ b/bootstrap
@@ -2563,7 +2563,7 @@ test extract-trace = "$progname" && func_main "$@"
 # End:
 
 # Set a version string for *this* script.
-scriptversion=2014-01-04.01; # UTC
+scriptversion=2014-01-27.02; # UTC
 
 
 ## ------------------- ##
@@ -3698,7 +3698,7 @@ func_require_git ()
     $opt_skip_git && GIT=true
 
     test true = "$GIT" || {
-      if test -f .git; then
+      if test -d .git; then
         ($GIT --version) >/dev/null 2>&1 || GIT=true
       fi
     }
diff --git a/gl/build-aux/bootstrap.in b/gl/build-aux/bootstrap.in
index 8441bdc..d0276f6 100755
--- a/gl/build-aux/bootstrap.in
+++ b/gl/build-aux/bootstrap.in
@@ -232,7 +232,7 @@ vc_ignore=
 . `echo "$0" |${SED-sed} 's|[^/]*$||'`"extract-trace"
 
 # Set a version string for *this* script.
-scriptversion=2014-01-04.01; # UTC
+scriptversion=2014-01-27.02; # UTC
 
 
 ## ------------------- ##
@@ -1367,7 +1367,7 @@ func_require_git ()
     $opt_skip_git && GIT=true
 
     test true = "$GIT" || {
-      if test -f .git; then
+      if test -d .git; then
         ($GIT --version) >/dev/null 2>&1 || GIT=true
       fi
     }


hooks/post-receive
-- 
GNU Libtool

Reply via email to