From 69fffb2dc4b8e9dfecf866dd27f488a4ad1de9ff Mon Sep 17 00:00:00 2001 From: Jason Ish Date: Tue, 15 Sep 2020 09:27:36 -0600 Subject: [PATCH] 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. --- doc/userguide/Makefile.am | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 -- 2.47.2