Commit e6e2802f by Carlo Wood Committed by Carlo Wood

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
parent 84879759
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> 2003-10-08 Richard Sandiford <rsandifo@redhat.com>
* config/mips/mips.c (mips_frame_info): Add cprestore_size field. * config/mips/mips.c (mips_frame_info): Add cprestore_size field.
......
...@@ -2204,7 +2204,7 @@ gengtype-yacc.o : $(parsedir)/gengtype-yacc.c gengtype.h $(BCONFIG_H) $(SYSTEM_H ...@@ -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-yacc.c $(OUTPUT_OPTION)
$(parsedir)/gengtype-lex.c : $(srcdir)/gengtype-lex.l $(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 ; \ mv -f g-$$$$ $(parsedir)/gengtype-lex.c ; \
else \ else \
rm -f g-$$$$ ; \ rm -f g-$$$$ ; \
......
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