libtool-commit
[Top][All Lists]
Advanced

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

[SCM] GNU Libtool branch, master, updated. v2.4.2.444-24-g4d57e09


From: Gary V. Vaughan
Subject: [SCM] GNU Libtool branch, master, updated. v2.4.2.444-24-g4d57e09
Date: Mon, 03 Feb 2014 04:19:42 +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 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 <address@hidden>
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 <address@hidden>

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

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                   address@hidden
   Brent Leback                 address@hidden
   Brian Barrett                        address@hidden
-  Bruce Korb                   address@hidden
   Bruno Haible                 address@hidden
   Brice De Bruyne              address@hidden
   Camilo La Rota               address@hidden
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

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