From f57638630e5831f423e01df7996ff2b54b52f746 Mon Sep 17 00:00:00 2001 From: rwild Date: Sat, 16 Jan 2010 14:42:32 +0000 Subject: 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 --- libjava/scripts/makemake.tcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libjava/scripts') 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 "" } -- cgit v1.2.3