diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rwxr-xr-x | configure.ac | 3 | ||||
-rw-r--r-- | doc/ChangeLog | 4 | ||||
-rw-r--r-- | doc/Makefile.am | 2 |
4 files changed, 12 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2004-11-19 Hasso Tepper <hasso at quagga.net> + + * configure.ac: Avoid regeneration of doc/quagga.info for now. + 2004-11-17 Paul Jakma <paul@dishone.st> * INSTALL.quagga.txt: texinfo version corrected, so section on diff --git a/configure.ac b/configure.ac index 801283d3..3583f2aa 100755 --- a/configure.ac +++ b/configure.ac @@ -1155,6 +1155,9 @@ AC_CONFIG_FILES([Makefile lib/Makefile zebra/Makefile ripd/Makefile pkgsrc/bgpd.sh pkgsrc/ospf6d.sh pkgsrc/ospfd.sh pkgsrc/ripd.sh pkgsrc/ripngd.sh pkgsrc/zebra.sh]) AC_CONFIG_FILES([vtysh/extract.pl],[chmod +x vtysh/extract.pl]) +## Hack, but working solution to avoid rebuilding of quagga.info. +## It's already in CVS until texinfo 4.7 is more common. +AC_CONFIG_COMMANDS([info-time],[touch doc/quagga.info]) AC_OUTPUT echo " diff --git a/doc/ChangeLog b/doc/ChangeLog index 9aa487f7..409f506a 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,3 +1,7 @@ +2004-11-19 Hasso Tepper <hasso at quagga.net> + + * Makefile.am: Don't remove quagga.info while cleaning up. + 2004-11-15 Paul Jakma <paul@dishone.st> * routeserver.texi: Strip ctrl-M from line endings, note by diff --git a/doc/Makefile.am b/doc/Makefile.am index a6e5ea94..a8d4bfd0 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -15,7 +15,7 @@ BUILT_SOURCES = defines.texi info_TEXINFOS = quagga.texi -CLEANFILES = *.pdf quagga.info +CLEANFILES = *.pdf # The figure sources figures_SOURCES = fig-normal-processing.eps \ |