From: Jason Ish Date: Tue, 15 Sep 2020 15:27:36 +0000 (-0600) Subject: doc/userguide: include man page even when not including pdf X-Git-Tag: suricata-6.0.0~58 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=69fffb2dc4b8e9dfecf866dd27f488a4ad1de9ff;p=thirdparty%2Fsuricata.git doc/userguide: include man page even when not including pdf Fix a mistake in Makefile.am where the man page was only being added to the distribution if the PDF was also created. It should be included even if the PDF cannot be included. --- diff --git a/doc/userguide/Makefile.am b/doc/userguide/Makefile.am index 159e6d4545..e17ba86e12 100644 --- a/doc/userguide/Makefile.am +++ b/doc/userguide/Makefile.am @@ -31,14 +31,14 @@ EXTRA_DIST = \ what-is-suricata.rst if HAVE_SURICATA_MAN -man1_MANS = suricata.1 +dist_man1_MANS = suricata.1 endif if HAVE_SPHINXBUILD -man1_MANS = suricata.1 +dist_man1_MANS = suricata.1 if HAVE_PDFLATEX -EXTRA_DIST += $(man1_MANS) userguide.pdf +EXTRA_DIST += userguide.pdf endif SPHINX_BUILD = sphinx-build -q