From da4a98bfbb2dd8ec36ce7abaa40e7f0491be58a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20Klime=C5=A1?= Date: Thu, 11 Dec 2014 15:42:12 +0100 Subject: [PATCH] man: allow installing pre-built manual pages if we can't build it If we have ENABLE_GTK_DOCS, but not BUILD_SETTING_DOCS, nm-settings.5 nm-settings-keyfile.5 and nm-settings-ifcfg-rh.5 would not be installed. (It happened on RHEL 7 build, due to missing BuildRequires: pygobject3-base) --- man/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/man/Makefile.am b/man/Makefile.am index c5f33f1959..4577cb41e0 100644 --- a/man/Makefile.am +++ b/man/Makefile.am @@ -98,7 +98,7 @@ uninstall-hook: if ENABLE_GTK_DOC man_MANS += $(docbook_generated_man_pages) CLEANFILES += $(docbook_generated_man_pages) -if BUILD_SETTING_DOCS +if SETTING_DOCS_AVAILABLE man_MANS += $(docbook_autogenerated_man_pages) CLEANFILES += $(docbook_autogenerated_man_pages) endif