diff options
author | Quentin Young <qlyoung@cumulusnetworks.com> | 2018-03-06 16:33:21 +0100 |
---|---|---|
committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2018-03-06 16:33:21 +0100 |
commit | e207a4b589a489649cdb06b2c824dc6948158b21 (patch) | |
tree | 1e282bb58e16d5e32390c89ea8b21a04cefffbfc /doc/Makefile.am | |
parent | doc: allow env var to ovveride sphinx defaults (diff) | |
download | frr-e207a4b589a489649cdb06b2c824dc6948158b21.tar.xz frr-e207a4b589a489649cdb06b2c824dc6948158b21.zip |
doc: prevent `clean` target from building manpages
Unconditional automake subdirectory flag = 'man' causes manpages to
always be built regardless of target, which is undesirable for `clean`.
Remove unconditional flag and override automake targets that need to
build manpages instead.
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'doc/Makefile.am')
-rw-r--r-- | doc/Makefile.am | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am index d8244edca..4a9b0525a 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -2,7 +2,6 @@ # Tell Automake to invoke 'make' in the manpages directory with argument 'man' SUBDIRS = manpages -AM_MAKEFLAGS = man MANPAGE_BUILDDIR = manpages/_build/man |