]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Makefile.in (ALL_GTFILES_H): Replace sed statement with more portable tr expression.
authorDaniel Jacobowitz <dan@codesourcery.com>
Thu, 8 Dec 2005 06:40:37 +0000 (06:40 +0000)
committerAndreas Tobler <andreast@gcc.gnu.org>
Thu, 8 Dec 2005 06:40:37 +0000 (07:40 +0100)
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

gcc/ChangeLog
gcc/Makefile.in

index 189de9bd16accde2d873ccdd4fe646c924e45485..0a08ca7d02efeda550ced0c90a158216c969cde8 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 1b76e921b4a98d14d49963d488f51b419b45b18d..7366ba788d3f199f1de3d78cb56d3601904e2d81 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