diff options
| author | rwild <rwild@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-01-16 14:42:32 +0000 |
|---|---|---|
| committer | rwild <rwild@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-01-16 14:42:32 +0000 |
| commit | f57638630e5831f423e01df7996ff2b54b52f746 (patch) | |
| tree | 448346a4b071523906dbff9bf5bc54e6dec0c70f /libjava/scripts/makemake.tcl | |
| parent | 1a9c54a35da528ea0ed834cd8303b31767be0c1f (diff) | |
| download | ppe42-gcc-f57638630e5831f423e01df7996ff2b54b52f746.tar.gz ppe42-gcc-f57638630e5831f423e01df7996ff2b54b52f746.zip | |
Avoid tr '\n', for Solaris /usr/bin/tr.
contrib/
* check_warning_flags.sh: Use \012 instead of \n with tr.
gcc/:
PR gcc/42525
* Makefile.in (write_entries_to_file, install-plugin):
Use \012 instead of \n with tr.
libjava/:
* Makefile.am (write_entries_to_file): Use \012 instead of \n
with tr.
* scripts/makemake.tcl: Likewise.
* sources.am: Regenerate.
* Makefile.in: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@155963 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/scripts/makemake.tcl')
| -rwxr-xr-x | libjava/scripts/makemake.tcl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libjava/scripts/makemake.tcl b/libjava/scripts/makemake.tcl index 521f604e69c..6d1eea95a34 100755 --- a/libjava/scripts/makemake.tcl +++ b/libjava/scripts/makemake.tcl @@ -357,7 +357,7 @@ proc emit_package_rule_to_list {package package_files_list} { # Object and Class are special cases due to an apparent compiler # bug. Process is a special case because we don't build all # concrete implementations of Process on all platforms. - set omit "| tr ' ' '\\n' | fgrep -v Object.class | fgrep -v Class.class | egrep -v '\(Ecos\|Posix\|Win32\)Process' " + set omit "| tr ' ' '\\012' | fgrep -v Object.class | fgrep -v Class.class | egrep -v '\(Ecos\|Posix\|Win32\)Process' " } else { set omit "" } |

