Makefile.in (GTFILES_H): Use | instead of ; as separator in sed substitutions.

2008-06-25  Olivier Hainque  <hainque@adacore.com>

       * Makefile.in (GTFILES_H): Use | instead of ; as separator in
       sed substitutions.

From-SVN: r137107
This commit is contained in:
Olivier Hainque 2008-06-25 12:55:17 +00:00 committed by Olivier Hainque
parent 185ab3b677
commit 5cff8550d9
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2008-06-25 Olivier Hainque <hainque@adacore.com>
* Makefile.in (GTFILES_H): Use | instead of ; as separator in
sed substitutions.
2008-06-25 Richard Guenther <rguenther@suse.de>
* tree-ssa-structalias.c (fieldoff_compare): Make sure to

View File

@ -3181,7 +3181,7 @@ GTFILES_H = $(subst /,-, \
$(shell echo $(patsubst $(srcdir)/%,gt-%, \
$(patsubst %.c,%.h, \
$(filter %.c, $(GTFILES)))) \
| sed -e "s;/[^ ]*/;/;g" -e "s;gt-config/;gt-;g"))
| sed -e "s|/[^ ]*/|/|g" -e "s|gt-config/|gt-|g"))
GTFILES_LANG_H = $(patsubst [%], gtype-%.h, $(filter [%], $(GTFILES)))
ALL_GTFILES_H := $(sort $(GTFILES_H) $(GTFILES_LANG_H))