diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2001-02-11 06:49:39 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2001-02-11 06:49:39 +0000 |
commit | 231e9a0c98a36ea6ddd4fe18483cf645caff25e5 (patch) | |
tree | 627e1dbfa1de8f7f6112f949fe48760c71697981 | |
parent | 27e276355eeef730e7aeeeb62d9f0d0a9ce486fd (diff) | |
download | fetchmail-231e9a0c98a36ea6ddd4fe18483cf645caff25e5.tar.gz fetchmail-231e9a0c98a36ea6ddd4fe18483cf645caff25e5.tar.bz2 fetchmail-231e9a0c98a36ea6ddd4fe18483cf645caff25e5.zip |
Fix broken productions for TODO and FEATURES.
svn path=/trunk/; revision=3051
-rw-r--r-- | Makefile.in | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 15ee5235..55c2dde7 100644 --- a/Makefile.in +++ b/Makefile.in @@ -256,7 +256,8 @@ extra = $(srcdir)/alloca.c $(srcdir)/getopt.[ch] $(srcdir)/getopt1.c \ $(srcdir)/md5c.c docs = $(srcdir)/COPYING $(srcdir)/FEATURES $(srcdir)/fetchmail-features.html \ $(srcdir)/design-notes.html $(srcdir)/NOTES \ - $(srcdir)/INSTALL $(srcdir)/NEWS $(srcdir)/TODO $(srcdir)/README \ + $(srcdir)/todo.html $(srcdir)/TODO \ + $(srcdir)/INSTALL $(srcdir)/NEWS $(srcdir)/README \ $(srcdir)/README.NTLM $(srcdir)/fetchmail.lsm $(srcdir)/sample.rcfile \ $(srcdir)/*.man $(srcdir)/FAQ $(srcdir)/fetchmail-FAQ.html config = $(srcdir)/Makefile.in $(srcdir)/configure.in $(srcdir)/configure \ @@ -285,7 +286,11 @@ FEATURES: fetchmail-features.html NOTES: design-notes.html echo " (This document was generated from design-notes.html)" >NOTES - lynx -dump -nolist design-notes.html | grep -v "Back to " >NOTES + lynx -dump -nolist design-notes.html | grep -v "Back to " >>NOTES + +TODO: todo.html + echo " (This document was generated from todo.html)" >TODO + lynx -dump -nolist todo.html | grep -v "Back to " >>TODO # man2html no longer chokes and dies on this man page, # but manServer.pl does a much better job. |