Commit 820715b8 by Daniel Jacobowitz Committed by Andreas Tobler

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
parent 9fecf303
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.
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment