Skip to content

Commit

Permalink
ChangeLog:
Browse files Browse the repository at this point in the history
	* 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.



git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@151124 138bc75d-0d04-0410-961f-82ee72b054a4
  • Loading branch information
davek committed Aug 26, 2009
1 parent a8cefe9 commit 7baff5b
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
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>

* configure.ac (AC_PREREQ): Bump to 2.64.
Expand Down
5 changes: 5 additions & 0 deletions libjava/classpath/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
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>

* configure.ac (AC_PREREQ): Bump to 2.64.
Expand Down
4 changes: 2 additions & 2 deletions libjava/classpath/ltmain.sh
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,8 @@ func_dirname_and_basename ()
# These SED scripts presuppose an absolute path with a trailing slash.
pathcar="s,^/\([^/]*\).*$,\1,"
pathcdr="s,^/[^/]*,,"
removedotparts="s,/\(\./\)\{1\,\},/,g;s,/\.$,/,"
collapseslashes="s,/\{1\,\},/,g"
removedotparts="s@/\(\./\)\{1,\}@/@g;s,/\.$,/,"
collapseslashes="s@/\{1,\}@/@g"
finalslash="s,/*$,/,"

# func_normal_abspath PATH
Expand Down
4 changes: 2 additions & 2 deletions ltmain.sh
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,8 @@ func_dirname_and_basename ()
# These SED scripts presuppose an absolute path with a trailing slash.
pathcar="s,^/\([^/]*\).*$,\1,"
pathcdr="s,^/[^/]*,,"
removedotparts="s,/\(\./\)\{1\,\},/,g;s,/\.$,/,"
collapseslashes="s,/\{1\,\},/,g"
removedotparts="s@/\(\./\)\{1,\}@/@g;s,/\.$,/,"
collapseslashes="s@/\{1,\}@/@g"
finalslash="s,/*$,/,"

# func_normal_abspath PATH
Expand Down

0 comments on commit 7baff5b

Please sign in to comment.