2005-12-08 Daniel Jacobowitz <dan@codesourcery.com>
authorandreast <andreast@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 8 Dec 2005 06:40:37 +0000 (06:40 +0000)
committerandreast <andreast@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 8 Dec 2005 06:40:37 +0000 (06:40 +0000)
    Andreas Tobler  <a.tobler@schweiz.ch>

* Makefile.in (ALL_GTFILES_H): Replace sed statement with more portable
tr expression.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@108215 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/Makefile.in

index 189de9b..0a08ca7 100644 (file)
@@ -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.
index 1b76e92..7366ba7 100644 (file)
@@ -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