From: Chris Demetriou Date: Thu, 18 May 2000 22:39:58 +0000 (+0000) Subject: * Makefile.in (hash.h): Delete a redundant use of gawk and sed. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=716081958c4cc83f16a9baab9ae1af5bae9da47b;p=gcc.git * Makefile.in (hash.h): Delete a redundant use of gawk and sed. From-SVN: r34002 --- diff --git a/gcc/ch/ChangeLog b/gcc/ch/ChangeLog index a491bb376eb..24991a04bc5 100644 --- a/gcc/ch/ChangeLog +++ b/gcc/ch/ChangeLog @@ -1,3 +1,7 @@ +2000-05-18 Chris Demetriou + + * Makefile.in (hash.h): Delete a redundant use of gawk and sed. + Wed May 17 17:27:44 2000 Andrew Cagney * decl.c (c_decode_option): Update -Wall unused flags by diff --git a/gcc/ch/Makefile.in b/gcc/ch/Makefile.in index c8b441af602..7e9e229f769 100644 --- a/gcc/ch/Makefile.in +++ b/gcc/ch/Makefile.in @@ -250,16 +250,14 @@ CHILL_TREE_H = $(TREE_H) ch-tree.h ch-tree.def # one all lowercase. The hash table ends up with both sets in it. $(srcdir)/hash.h: sed -e '1,/^%%/d' < $(srcdir)/gperf | \ - sed '/^[^a-zA-Z]/d' | tr "[a-z]" "[A-Z]" > gperf.tmp - gawk '{ printf ("s/^%s,/%s,/\n", $$1, toupper ($$1)) }' < gperf.tmp > sed.tmp - sed -f sed.tmp < gperf.tmp > gperf.tmp2 + sed '/^[^a-zA-Z]/d' | tr "[a-z]" "[A-Z]" > gperf.tmp2 cat $(srcdir)/gperf gperf.tmp2 > gperf.tmp gperf -L C -F ', 0, 0, 0' -D -E -S1 -p -j1 -i 1 -g -o -t -k'*' \ gperf.tmp > $(srcdir)/hash.h || ( \ echo "Please update your 'gperf' from the GCC infrastructure" >&2 ; \ echo " ftp://sourceware.cygnus.com/pub/egcs/infrastructure/gperf*" >&2 ; \ exit 1 ) - $(RM) gperf.tmp gperf.tmp2 sed.tmp + $(RM) gperf.tmp gperf.tmp2 actions.o : actions.c $(CONFIG_H) $(CHILL_TREE_H) actions.h $(RTL_H) \ lex.h $(srcdir)/../flags.h $(srcdir)/../input.h \