don't install the nanorc manpages if nano is built without nanorc
support git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4020 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
4554520805
commit
9009890726
|
@ -1,6 +1,9 @@
|
||||||
CVS code -
|
CVS code -
|
||||||
- General:
|
- General:
|
||||||
- Miscellaneous comment fixes. (DLR)
|
- 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)
|
||||||
- winio.c:
|
- winio.c:
|
||||||
do_credits()
|
do_credits()
|
||||||
- Update the last copyright notice to include 2006. (DLR)
|
- Update the last copyright notice to include 2006. (DLR)
|
||||||
|
|
|
@ -372,6 +372,7 @@ int main(void)
|
||||||
esac], [AC_MSG_RESULT(no)])
|
esac], [AC_MSG_RESULT(no)])
|
||||||
|
|
||||||
AM_CONDITIONAL(USE_COLOR, test x$color_support = xyes)
|
AM_CONDITIONAL(USE_COLOR, test x$color_support = xyes)
|
||||||
|
AM_CONDITIONAL(USE_NANORC, test x$nanorc_support = xyes)
|
||||||
|
|
||||||
dnl Checks for functions.
|
dnl Checks for functions.
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,13 @@ else
|
||||||
SUBDIRS =
|
SUBDIRS =
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
if USE_NANORC
|
||||||
man_MANS = nano.1 nanorc.5 rnano.1
|
man_MANS = nano.1 nanorc.5 rnano.1
|
||||||
|
else
|
||||||
|
man_MANS = nano.1 rnano.1
|
||||||
|
endif
|
||||||
|
|
||||||
|
nano_mans = nano.1 nanorc.5 rnano.1
|
||||||
|
|
||||||
BUILT_SOURCES = nano.1.html nanorc.5.html rnano.1.html
|
BUILT_SOURCES = nano.1.html nanorc.5.html rnano.1.html
|
||||||
|
|
||||||
|
@ -15,4 +21,4 @@ nanorc.5.html: nanorc.5
|
||||||
rnano.1.html: rnano.1
|
rnano.1.html: rnano.1
|
||||||
cat $< | groff -t -mandoc -Thtml > $@
|
cat $< | groff -t -mandoc -Thtml > $@
|
||||||
|
|
||||||
EXTRA_DIST = $(man_MANS) $(BUILT_SOURCES)
|
EXTRA_DIST = $(nano_mans) $(BUILT_SOURCES)
|
||||||
|
|
|
@ -1,6 +1,12 @@
|
||||||
mandir = @mandir@/fr
|
mandir = @mandir@/fr
|
||||||
|
|
||||||
|
if USE_NANORC
|
||||||
man_MANS = nano.1 nanorc.5 rnano.1
|
man_MANS = nano.1 nanorc.5 rnano.1
|
||||||
|
else
|
||||||
|
man_MANS = nano.1 rnano.1
|
||||||
|
endif
|
||||||
|
|
||||||
|
nano_mans = nano.1 nanorc.5 rnano.1
|
||||||
|
|
||||||
BUILT_SOURCES = nano.1.html nanorc.5.html rnano.1.html
|
BUILT_SOURCES = nano.1.html nanorc.5.html rnano.1.html
|
||||||
|
|
||||||
|
@ -11,4 +17,4 @@ nanorc.5.html: nanorc.5
|
||||||
rnano.1.html: rnano.1
|
rnano.1.html: rnano.1
|
||||||
cat $< | groff -t -mandoc -Thtml > $@
|
cat $< | groff -t -mandoc -Thtml > $@
|
||||||
|
|
||||||
EXTRA_DIST = $(man_MANS) $(BUILT_SOURCES)
|
EXTRA_DIST = $(nano_mans) $(BUILT_SOURCES)
|
||||||
|
|
Loading…
Reference in New Issue