aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorDaniel Jacobowitz <dan@codesourcery.com>2005-12-08 06:40:37 +0000
committerAndreas Tobler <andreast@gcc.gnu.org>2005-12-08 07:40:37 +0100
commit820715b8d29fcb3dd4b3a45815c96091bd3613da (patch)
tree4117cae15d5345bd49676d7c4cd0a7cb4cf8ea8b /gcc
parent9fecf303322bb431d409b5836e8bfce88b19d6bb (diff)
downloadgcc-820715b8d29fcb3dd4b3a45815c96091bd3613da.zip
gcc-820715b8d29fcb3dd4b3a45815c96091bd3613da.tar.gz
gcc-820715b8d29fcb3dd4b3a45815c96091bd3613da.tar.bz2
Makefile.in (ALL_GTFILES_H): Replace sed statement with more portable tr expression.
2005-12-08 Daniel Jacobowitz <dan@codesourcery.com> Andreas Tobler <a.tobler@schweiz.ch> * Makefile.in (ALL_GTFILES_H): Replace sed statement with more portable tr expression. Co-Authored-By: Andreas Tobler <a.tobler@schweiz.ch> From-SVN: r108215
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/Makefile.in2
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 189de9b..0a08ca7 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,9 @@
+2005-12-08 Daniel Jacobowitz <dan@codesourcery.com>
+ Andreas Tobler <a.tobler@schweiz.ch>
+
+ * Makefile.in (ALL_GTFILES_H): Replace sed statement with more portable
+ tr expression.
+
2005-12-07 J"orn Rennecke <joern.rennecke@st.com>
* expr.c (force_operand): Use convert_to_mode for conversions.
diff --git a/gcc/Makefile.in b/gcc/Makefile.in
index 1b76e92..7366ba7 100644
--- a/gcc/Makefile.in
+++ b/gcc/Makefile.in
@@ -2820,7 +2820,7 @@ GTFILES_FILES_FILES_H = $(addprefix gt-, \
$(subst /,-,$(GTFILES_FILES_FILES_C:.c=.h)))
GTFILES_LANG_DIR_NAMES_H = $(foreach d,$(GTFILES_LANG_DIR_NAMES), gtype-$(d).h)
ALL_GTFILES_H := $(shell echo $(GTFILES_FILES_FILES_H) \
- $(GTFILES_LANG_DIR_NAMES_H) | sed "s/ /\n/g" | sort -u)
+ $(GTFILES_LANG_DIR_NAMES_H) | tr ' ' '\n' | sort -u)
$(ALL_GTFILES_H) : s-gtype ; @true