]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
Fix PATH_SEPARATOR handling for OS/2.
authorKO Myung-Hun <komh@chollian.net>
Wed, 15 Dec 2010 21:29:17 +0000 (22:29 +0100)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Wed, 15 Dec 2010 21:31:32 +0000 (22:31 +0100)
* 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.

ChangeLog
Makefile.am
THANKS
libltdl/config/general.m4sh
libltdl/m4/libtool.m4

index 8bc122effd6f122815f364f9b28516e764e337eb..0d4959557215fd2d6046cf307bc6b27af6d7870f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2010-12-15  KO Myung-Hun  <komh@chollian.net>  (tiny change)
+           Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
+
+       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  <Ralf.Wildenhues@gmx.de>
 
        Fix nvcc PIC setting on darwin.
index 66f38b104e2471af02bcc92df82180900fdb99a5..4be353c6cfbe41163e6e8fe6c366a26d47bce0da 100644 (file)
@@ -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 6dd8dd86e432eda4c6e5df61f38181a7f06dc28f..5260878d713042b68daed75568b62634f1409b37 100644 (file)
--- a/THANKS
+++ b/THANKS
   Kenneth Albanowski           kjahds@kjahds.com
   Kevin Ryde                   user42@zip.com.au
   Khem Raj                      raj.khem@gmail.com
+  KO Myung-Hun                 komh@chollian.net
   Kurt D. Zeilenga             Kurt@OpenLDAP.Org
   Lennart Poettering           lennart@poettering.net
   Lionel Landwerlin             llandwerlin@gmail.com
index 44a7ce95a56aad409b9d16b5aadd487cb3908775..40d5413818e06f02bcef54880f45986cb84a8476 100644 (file)
@@ -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
index 1f6114046decd14be19eaef6d292d521c776ef87..ab3e16fc0f91775292213bfa042d4fe48b850190 100644 (file)
@@ -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