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  4d57e0905a2c5ba0e537c8b3ccc116cdc0240c5d (commit)
      from  70ff0e04c9dda19b74c88005abed3c1ca4adc3fc (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 4d57e0905a2c5ba0e537c8b3ccc116cdc0240c5d
Author: Bruce Korb <[email protected]>
Date:   Mon Feb 3 17:16:44 2014 +1300

    bootstrap: check for git tree with .git/. in case of soft links.
    
    * gl/build-aux/bootstrap.in (func_require_git): Use
    `test -d .git/.` to defeat soft-links versus non-GNU test.
    * bootstrap: Regenerate.
    * THANKS: Remove duplicate Bruce Korb entry.
    
    Copyright-paperwork-exempt: Yes
    Signed-off-by: Gary V. Vaughan <[email protected]>

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

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

diff --git a/THANKS b/THANKS
index 63d3ea2..de0cfde 100644
--- a/THANKS
+++ b/THANKS
@@ -78,7 +78,6 @@
   Brad Smith                   [email protected]
   Brent Leback                 [email protected]
   Brian Barrett                        [email protected]
-  Bruce Korb                   [email protected]
   Bruno Haible                 [email protected]
   Brice De Bruyne              [email protected]
   Camilo La Rota               [email protected]
diff --git a/bootstrap b/bootstrap
index 4e24dbf..feb20a1 100755
--- a/bootstrap
+++ b/bootstrap
@@ -3698,7 +3698,7 @@ func_require_git ()
     $opt_skip_git && GIT=true
 
     test true = "$GIT" || {
-      if test -d .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 d0276f6..266eb20 100755
--- a/gl/build-aux/bootstrap.in
+++ b/gl/build-aux/bootstrap.in
@@ -1367,7 +1367,7 @@ func_require_git ()
     $opt_skip_git && GIT=true
 
     test true = "$GIT" || {
-      if test -d .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