diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2001-01-05 21:08:33 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2001-01-05 21:08:33 +0000 |
commit | 85fe8c2b378ec2c93d7ce4a745e1b58ddcf52899 (patch) | |
tree | fb2b3036bc5671b4f9af28a5f588d75527fb6dfc /Makefile.in | |
parent | dbef2405753f7c8ab8eafe043b89ab3c7bacd232 (diff) | |
download | fetchmail-85fe8c2b378ec2c93d7ce4a745e1b58ddcf52899.tar.gz fetchmail-85fe8c2b378ec2c93d7ce4a745e1b58ddcf52899.tar.bz2 fetchmail-85fe8c2b378ec2c93d7ce4a745e1b58ddcf52899.zip |
Fix the lex dependency.
svn path=/trunk/; revision=3013
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 23ec3f65..5e51d1ff 100644 --- a/Makefile.in +++ b/Makefile.in @@ -231,7 +231,7 @@ config.status: configure # Special dependencies, not easily handled portably without explicit rules rcfile_l.c rcfile_l.h: $(srcdir)/rcfile_l.l $(LEX) $(LEXFLAGS) $(srcdir)/rcfile_l.l - mv lex.yy.c rcfile_l.c + sed <lex.yy.c >rcfile_l.c -e "/lex\\.yy\\.c/s//rcfile_l.c/" rcfile_y.c rcfile_y.h: $(srcdir)/rcfile_y.y @echo "expect conflicts: 2 shift/reduce" $(YACC) $(YACCFLAGS) $(srcdir)/rcfile_y.y |