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
This commit is contained in:
Carlo Wood 2003-10-08 12:24:08 +00:00 committed by Carlo Wood
parent 84879759e9
commit e6e2802fa7
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2003-10-08 Carlo Wood <carlo@alinoe.com>
* 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 <rsandifo@redhat.com>
* config/mips/mips.c (mips_frame_info): Add cprestore_size field.

View File

@ -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-$$$$ ; \