Commit 68ccd57c by Dave Korn Committed by Dave Korn

ltmain.sh (removedotparts): Don't use comma as 's' separator.

ChangeLog:

	* ltmain.sh (removedotparts): Don't use comma as 's' separator.
	(collapseslashes): Likewise.

libjava/classpath/ChangeLog:

	* ltmain.sh (removedotparts): Don't use comma as 's' separator.
	(collapseslashes): Likewise.

From-SVN: r151124
parent 6b8b9e42
2009-08-26 Dave Korn <dave.korn.cygwin@gmail.com>
* ltmain.sh (removedotparts): Don't use comma as 's' separator.
(collapseslashes): Likewise.
2009-08-24 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> 2009-08-24 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
* configure.ac (AC_PREREQ): Bump to 2.64. * configure.ac (AC_PREREQ): Bump to 2.64.
......
2009-08-26 Dave Korn <dave.korn.cygwin@gmail.com>
* ltmain.sh (removedotparts): Don't use comma as 's' separator.
(collapseslashes): Likewise.
2009-08-24 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> 2009-08-24 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
* configure.ac (AC_PREREQ): Bump to 2.64. * configure.ac (AC_PREREQ): Bump to 2.64.
......
...@@ -173,8 +173,8 @@ func_dirname_and_basename () ...@@ -173,8 +173,8 @@ func_dirname_and_basename ()
# These SED scripts presuppose an absolute path with a trailing slash. # These SED scripts presuppose an absolute path with a trailing slash.
pathcar="s,^/\([^/]*\).*$,\1," pathcar="s,^/\([^/]*\).*$,\1,"
pathcdr="s,^/[^/]*,," pathcdr="s,^/[^/]*,,"
removedotparts="s,/\(\./\)\{1\,\},/,g;s,/\.$,/," removedotparts="s@/\(\./\)\{1,\}@/@g;s,/\.$,/,"
collapseslashes="s,/\{1\,\},/,g" collapseslashes="s@/\{1,\}@/@g"
finalslash="s,/*$,/," finalslash="s,/*$,/,"
# func_normal_abspath PATH # func_normal_abspath PATH
......
...@@ -173,8 +173,8 @@ func_dirname_and_basename () ...@@ -173,8 +173,8 @@ func_dirname_and_basename ()
# These SED scripts presuppose an absolute path with a trailing slash. # These SED scripts presuppose an absolute path with a trailing slash.
pathcar="s,^/\([^/]*\).*$,\1," pathcar="s,^/\([^/]*\).*$,\1,"
pathcdr="s,^/[^/]*,," pathcdr="s,^/[^/]*,,"
removedotparts="s,/\(\./\)\{1\,\},/,g;s,/\.$,/," removedotparts="s@/\(\./\)\{1,\}@/@g;s,/\.$,/,"
collapseslashes="s,/\{1\,\},/,g" collapseslashes="s@/\{1,\}@/@g"
finalslash="s,/*$,/," finalslash="s,/*$,/,"
# func_normal_abspath PATH # func_normal_abspath PATH
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment