OSDN Git Service

* Makefile.in (gengtype-lex.c): flex 2.5.4[a] doesn't understand
authorcarlo <carlo@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 8 Oct 2003 12:24:08 +0000 (12:24 +0000)
committercarlo <carlo@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 8 Oct 2003 12:24:08 +0000 (12:24 +0000)
a space after the -o option.  flex 2.5.31 understands both, with
and without the space. Removed that space.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72223 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/Makefile.in

index 7a390ca..5b2e01a 100644 (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.
index 43bd011..6973682 100644 (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-$$$$ ; \