]> git.wh0rd.org Git - nano.git/commitdiff
2009-02-23 Eitan Adler <eitanadlerlist@gmail.com>
authorChris Allegretta <chrisa@asty.org>
Wed, 25 Feb 2009 05:06:05 +0000 (05:06 +0000)
committerChris Allegretta <chrisa@asty.org>
Wed, 25 Feb 2009 05:06:05 +0000 (05:06 +0000)
* doc/man/Makefile.am: Fix make variable substitution to be more portable

2009-02-23 Chris Allegretta <chrisa@asty.org>
* doc/man/fr/Makefile.am: Add groff check fix to fr files.

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

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

index b1b9b2045841ea9560e2abe7e649336c2af8e392..9217f8aa8ba2a92688d7d0b75cbf0ceffbc5685f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,11 @@
+2009-02-23 Eitan Adler <eitanadlerlist@gmail.com>
+       * doc/man/Makefile.am: Fix make variable substitution to be more portable
+
 2009-02-23 Chris Allegretta <chrisa@asty.org>
        * rcfile.c (parse_keybinding) - Define a var before tryung to use it.  Whoops!
        * fix some redefinitions causing compiler warnings, from Eitan Adler.  Other
          (hopefully) fixes for uncasted malloc()s, reported by the same.
+       * doc/man/fr/Makefile.am: Add groff check fix to fr files.
 
 GNU nano 2.1.9 - 2009.02.16
 2009-02-16 Chris Allegretta <chrisa@asty.org>
index e932674551fa794da62ffce9e15c18b1768fb83c..fbcdce86722cafe8eb7282c7fee195cd3b2838ec 100644 (file)
@@ -16,18 +16,18 @@ BUILT_SOURCES = nano.1.html rnano.1.html
 endif
 endif
 
-if GROFF_HTML
 nano_man_mans = nano.1 nanorc.5 rnano.1
+if GROFF_HTML
 htmlman_DATA = nano.1.html nanorc.5.html rnano.1.html
 htmlmandir = $(datadir)/nano/man-html
 nano_built_sources = nano.1.html nanorc.5.html rnano.1.html
 
 nano.1.html: nano.1
-       groff -t -mandoc -Thtml < $< > $@
+       groff -t -mandoc -Thtml < $? > $@
 nanorc.5.html: nanorc.5
-       groff -t -mandoc -Thtml < $< > $@
+       groff -t -mandoc -Thtml < $? > $@
 rnano.1.html: rnano.1
-       groff -t -mandoc -Thtml < $< > $@
+       groff -t -mandoc -Thtml < $? > $@
 
 EXTRA_DIST = $(nano_man_mans) $(nano_built_sources)
 else 
index d898b102f12c24e54c06eb68cba5703da573eb65..7a43052053ccf2ca527446e099e88803515f8268 100644 (file)
@@ -2,20 +2,32 @@ mandir = @mandir@/fr
 
 if USE_NANORC
 man_MANS = nano.1 nanorc.5 rnano.1
+if GROFF_HTML
 BUILT_SOURCES = nano.1.html nanorc.5.html rnano.1.html
+endif
 else
 man_MANS = nano.1 rnano.1
+if GROFF_HTML
 BUILT_SOURCES = nano.1.html rnano.1.html
 endif
+endif
 
 nano_man_mans = nano.1 nanorc.5 rnano.1
+if GROFF_HTML
+htmlman_DATA = nano.1.html nanorc.5.html rnano.1.html
+htmlmandir = $(datadir)/nano/man-html/fr
+
 nano_built_sources = nano.1.html nanorc.5.html rnano.1.html
 
 nano.1.html: nano.1
-       groff -t -mandoc -Thtml < $< > $@
+       groff -t -mandoc -Thtml < $? > $@
 nanorc.5.html: nanorc.5
-       groff -t -mandoc -Thtml < $< > $@
+       groff -t -mandoc -Thtml < $? > $@
 rnano.1.html: rnano.1
-       groff -t -mandoc -Thtml < $< > $@
+       groff -t -mandoc -Thtml < $? > $@
 
 EXTRA_DIST = $(nano_man_mans) $(nano_built_sources)
+else
+EXTRA_DIST = $(nano_man_mans)
+endif
+