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
+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.
$(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