]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* config/getopt.m4sh: Under MinGW, reported paths may include ':'
authorBob Friesenhahn <bfriesen@simple.dallas.tx.us>
Sun, 10 Oct 2004 23:24:39 +0000 (23:24 +0000)
committerBob Friesenhahn <bfriesen@simple.dallas.tx.us>
Sun, 10 Oct 2004 23:24:39 +0000 (23:24 +0000)
so ':' should not be used as the sed delimiter.  Use '*' instead
since it is very unlikely to appear in a path.

ChangeLog
config/getopt.m4sh

index 705de1ec6c7142f6e79f656509fa80c8fa0797cb..60a02c658dbf8dc4f0cfe69ede2ef2e8e855fd55 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2004-10-10  Bob Friesenhahn  <bfriesen@simple.dallas.tx.us>
+
+       * config/getopt.m4sh: Under MinGW, reported paths may include ':'
+       so ':' should not be used as the sed delimiter.  Use '*' instead
+       since it is very unlikely to appear in a path.
+
 2004-10-10  Albert Chin-A-Young  <china@thewrittenword.com>
 
        * config/ltmain.m4sh: Don't require versions of GNU sed newer than
index abd14f3b2bcbb368070dfe1e19f1625f407018f5..89047df816b26e04ea69bfe9e21ced2a04af05a9 100644 (file)
@@ -59,11 +59,11 @@ func_help ()
 {
     $SED '/^# Usage:/,/# Report bugs to/ {
         s/^# //; s/^# *$//;
-       s:\$progname:'$progname':;
-       s:\$SHELL:'"$SHELL"':;
-       s:\$LTCC:'"$LTCC"':;
-       s:\$LTCFLAGS:'"$LTCFLAGS"':;
-       s:\$LD:'"$LD"':;
+       s*\$progname*'$progname'*;
+       s*\$SHELL*'"$SHELL"'*;
+       s*\$LTCC*'"$LTCC"'*;
+       s*\$LTCFLAGS*'"$LTCFLAGS"'*;
+       s*\$LD*'"$LD"'*;
        s/\$with_gnu_ld/'"$with_gnu_ld"'/;
        s/\$automake_version/'"`automake --version 2>/dev/null |$SED 1q`"'/;
        s/\$autoconf_version/'"`autoconf --version 2>/dev/null |$SED 1q`"'/;