From: Carlo Wood Date: Wed, 8 Oct 2003 12:24:08 +0000 (+0000) Subject: Makefile.in (gengtype-lex.c): flex 2.5.4[a] doesn't understand a space after the... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e6e2802fa761041287343a591e94f50d75f4af06;p=gcc.git Makefile.in (gengtype-lex.c): flex 2.5.4[a] doesn't understand a space after the -o option. * Makefile.in (gengtype-lex.c): flex 2.5.4[a] doesn't understand a space after the -o option. flex 2.5.31 understands both, with and without the space. Removed that space. From-SVN: r72223 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 7a390ca2f63..5b2e01a6f67 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2003-10-08 Carlo Wood + + * Makefile.in (gengtype-lex.c): flex 2.5.4[a] doesn't understand + a space after the -o option. flex 2.5.31 understands both, with + and without the space. Removed that space. + 2003-10-08 Richard Sandiford * config/mips/mips.c (mips_frame_info): Add cprestore_size field. diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 43bd0119e8a..697368266b3 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -2204,7 +2204,7 @@ gengtype-yacc.o : $(parsedir)/gengtype-yacc.c gengtype.h $(BCONFIG_H) $(SYSTEM_H $(parsedir)/gengtype-yacc.c $(OUTPUT_OPTION) $(parsedir)/gengtype-lex.c : $(srcdir)/gengtype-lex.l - if $(FLEX) $(FLEXFLAGS) -o g-$$$$ $(srcdir)/gengtype-lex.l; then \ + if $(FLEX) $(FLEXFLAGS) -og-$$$$ $(srcdir)/gengtype-lex.l; then \ mv -f g-$$$$ $(parsedir)/gengtype-lex.c ; \ else \ rm -f g-$$$$ ; \