diff options
author | Ralf Wildenhues <Ralf.Wildenhues@gmx.de> | 2010-01-16 14:42:32 +0000 |
---|---|---|
committer | Ralf Wildenhues <rwild@gcc.gnu.org> | 2010-01-16 14:42:32 +0000 |
commit | 2fdb618d66fb9222cf911a366230e74e32678fd9 (patch) | |
tree | 448346a4b071523906dbff9bf5bc54e6dec0c70f /libjava/scripts/makemake.tcl | |
parent | 636cf8b1f93f6e2fe66e9b25ebe9555ed93d538e (diff) | |
download | gcc-2fdb618d66fb9222cf911a366230e74e32678fd9.zip gcc-2fdb618d66fb9222cf911a366230e74e32678fd9.tar.gz gcc-2fdb618d66fb9222cf911a366230e74e32678fd9.tar.bz2 |
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.
From-SVN: r155963
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 521f604..6d1eea9 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 "" } |