From: Bob Friesenhahn Date: Sun, 10 Oct 2004 23:24:39 +0000 (+0000) Subject: * config/getopt.m4sh: Under MinGW, reported paths may include ':' X-Git-Tag: release-1-9f~23 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4a5a7ce936ec6a52c78159cbd6f7bed8563b4c57;p=thirdparty%2Flibtool.git * 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. --- diff --git a/ChangeLog b/ChangeLog index 705de1ec6..60a02c658 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2004-10-10 Bob Friesenhahn + + * 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 * config/ltmain.m4sh: Don't require versions of GNU sed newer than diff --git a/config/getopt.m4sh b/config/getopt.m4sh index abd14f3b2..89047df81 100644 --- a/config/getopt.m4sh +++ b/config/getopt.m4sh @@ -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`"'/;