]> git.wh0rd.org Git - nano.git/commitdiff
don't generate the HTML versions of the nanorc manpages if nano is built
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Sat, 6 Jan 2007 23:21:24 +0000 (23:21 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Sat, 6 Jan 2007 23:21:24 +0000 (23:21 +0000)
without nanorc support

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4021 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
doc/man/Makefile.am
doc/man/fr/Makefile.am

index 5e921945c98af93c0343c386cae7011f07e7b1ae..04fe23681a7656193a19c8e4f68a836d6598984f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,9 +1,10 @@
 CVS code -
 - General:
        - Miscellaneous comment fixes. (DLR)
-       - Don't install the nanorc manpages if nano is built without
-         nanorc support.  Changes to configure.ac, doc/man/Makefile.am,
-         and doc/man/fr/Makefile.am. (DLR)
+       - Don't install the nanorc manpages or generate their HTML
+         versions if nano is built without nanorc support.  Changes to
+         configure.ac, doc/man/Makefile.am, and doc/man/fr/Makefile.am.
+         (DLR)
 - winio.c:
   do_credits()
        - Update the last copyright notice to include 2006. (DLR)
index d76d86466574e7a83a3ddefe1eb14f50f0c905bd..dbae113a6e2f9390e0c0f2e535a5712372ea89b9 100644 (file)
@@ -6,13 +6,14 @@ endif
 
 if USE_NANORC
 man_MANS = nano.1 nanorc.5 rnano.1
+BUILT_SOURCES = nano.1.html nanorc.5.html rnano.1.html
 else
 man_MANS = nano.1 rnano.1
+BUILT_SOURCES = nano.1.html rnano.1.html
 endif
 
-nano_mans = nano.1 nanorc.5 rnano.1
-
-BUILT_SOURCES = nano.1.html nanorc.5.html rnano.1.html
+nano_man_mans = nano.1 nanorc.5 rnano.1
+nano_built_sources = nano.1.html nanorc.5.html rnano.1.html
 
 nano.1.html: nano.1
        cat $< | groff -t -mandoc -Thtml > $@
@@ -21,4 +22,4 @@ nanorc.5.html: nanorc.5
 rnano.1.html: rnano.1
        cat $< | groff -t -mandoc -Thtml > $@
 
-EXTRA_DIST = $(nano_mans) $(BUILT_SOURCES)
+EXTRA_DIST = $(nano_man_mans) $(nano_built_sources)
index 5f295d8bf4ac63e5dea54b3c936d84ddbde07f99..0b9165ceb20a5a7cb23861dc4f8aa86a1095689d 100644 (file)
@@ -2,13 +2,14 @@ mandir = @mandir@/fr
 
 if USE_NANORC
 man_MANS = nano.1 nanorc.5 rnano.1
+BUILT_SOURCES = nano.1.html nanorc.5.html rnano.1.html
 else
 man_MANS = nano.1 rnano.1
+BUILT_SOURCES = nano.1.html rnano.1.html
 endif
 
-nano_mans = nano.1 nanorc.5 rnano.1
-
-BUILT_SOURCES = nano.1.html nanorc.5.html rnano.1.html
+nano_man_mans = nano.1 nanorc.5 rnano.1
+nano_built_sources = nano.1.html nanorc.5.html rnano.1.html
 
 nano.1.html: nano.1
        cat $< | groff -t -mandoc -Thtml > $@
@@ -17,4 +18,4 @@ nanorc.5.html: nanorc.5
 rnano.1.html: rnano.1
        cat $< | groff -t -mandoc -Thtml > $@
 
-EXTRA_DIST = $(nano_mans) $(BUILT_SOURCES)
+EXTRA_DIST = $(nano_man_mans) $(nano_built_sources)