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-31-g8c00e12


From: Ralf Wildenhues
Subject: [SCM] GNU Libtool branch, master, updated. v2.4-31-g8c00e12
Date: Wed, 15 Dec 2010 21:32:30 +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  8c00e12df8c8a1cc82e411779b2009e88bd203c2 (commit)
      from  82beb2a169ac1943df67be90675c3135ece03735 (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 8c00e12df8c8a1cc82e411779b2009e88bd203c2
Author: KO Myung-Hun <address@hidden>
Date:   Wed Dec 15 22:29:17 2010 +0100

    Fix PATH_SEPARATOR handling for OS/2.
    
    * Makefile.am (update_mans): Quote $(PATH_SEPARATOR).
    * libltdl/m4/libtool.m4 (_LT_SETUP): Add _LT_DECL for
    PATH_SEPARATOR.
    * libltdl/config/general.m4sh: Use PATH_SEPARATOR when computing
    $progpath.
    * THANKS: Update.

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

Summary of changes:
 ChangeLog                   |   11 +++++++++++
 Makefile.am                 |    2 +-
 THANKS                      |    1 +
 libltdl/config/general.m4sh |    2 +-
 libltdl/m4/libtool.m4       |    2 ++
 5 files changed, 16 insertions(+), 2 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 8bc122e..0d49595 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2010-12-15  KO Myung-Hun  <address@hidden>  (tiny change)
+           Ralf Wildenhues  <address@hidden>
+
+       Fix PATH_SEPARATOR handling for OS/2.
+       * Makefile.am (update_mans): Quote $(PATH_SEPARATOR).
+       * libltdl/m4/libtool.m4 (_LT_SETUP): Add _LT_DECL for
+       PATH_SEPARATOR.
+       * libltdl/config/general.m4sh: Use PATH_SEPARATOR when computing
+       $progpath.
+       * THANKS: Update.
+
 2010-12-10  Ralf Wildenhues  <address@hidden>
 
        Fix nvcc PIC setting on darwin.
diff --git a/Makefile.am b/Makefile.am
index 66f38b1..4be353c 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -330,7 +330,7 @@ $(srcdir)/doc/notes.txt: $(srcdir)/doc/notes.texi
 dist_man1_MANS         = $(srcdir)/doc/libtool.1 $(srcdir)/doc/libtoolize.1
 MAINTAINERCLEANFILES   += $(dist_man1_MANS)
 update_mans = \
-  PATH=.$(PATH_SEPARATOR)$$PATH; export PATH; \
+  PATH=".$(PATH_SEPARATOR)$$PATH"; export PATH; \
   $(HELP2MAN) --output=$@
 $(srcdir)/doc/libtool.1: $(srcdir)/$(auxdir)/ltmain.sh
        $(update_mans) --help-option=--help-all libtool
diff --git a/THANKS b/THANKS
index 6dd8dd8..5260878 100644
--- a/THANKS
+++ b/THANKS
@@ -122,6 +122,7 @@
   Kenneth Albanowski           address@hidden
   Kevin Ryde                   address@hidden
   Khem Raj                      address@hidden
+  KO Myung-Hun                 address@hidden
   Kurt D. Zeilenga             address@hidden
   Lennart Poettering           address@hidden
   Lionel Landwerlin             address@hidden
diff --git a/libltdl/config/general.m4sh b/libltdl/config/general.m4sh
index 44a7ce9..40d5413 100644
--- a/libltdl/config/general.m4sh
+++ b/libltdl/config/general.m4sh
@@ -296,7 +296,7 @@ case $progpath in
      ;;
   *)
      save_IFS="$IFS"
-     IFS=:
+     IFS=${PATH_SEPARATOR-:}
      for progdir in $PATH; do
        IFS="$save_IFS"
        test -x "$progdir/$progname" && break
diff --git a/libltdl/m4/libtool.m4 b/libltdl/m4/libtool.m4
index 1f61140..ab3e16f 100644
--- a/libltdl/m4/libtool.m4
+++ b/libltdl/m4/libtool.m4
@@ -146,6 +146,8 @@ AC_REQUIRE([AC_CANONICAL_BUILD])dnl
 AC_REQUIRE([_LT_PREPARE_SED_QUOTE_VARS])dnl
 AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl
 
+_LT_DECL([], [PATH_SEPARATOR], [0], [The PATH separator for the build 
system])dnl
+dnl
 _LT_DECL([], [host_alias], [0], [The host system])dnl
 _LT_DECL([], [host], [0])dnl
 _LT_DECL([], [host_os], [0])dnl


hooks/post-receive
-- 
GNU Libtool



reply via email to

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