diff options
author | Petr Spacek <pspacek@redhat.com> | 2016-11-01 12:39:04 +0100 |
---|---|---|
committer | Martin Babinsky <mbabinsk@redhat.com> | 2016-11-09 13:08:32 +0100 |
commit | 2f6712893be5e66260a169c367a4607be6043d11 (patch) | |
tree | c2890acd22502fa0b5d6cb8456efe6903aaaa3be | |
parent | 7282776c05c2fb254ae65b63977ba604be316038 (diff) | |
download | freeipa-2f6712893be5e66260a169c367a4607be6043d11.tar.gz freeipa-2f6712893be5e66260a169c367a4607be6043d11.tar.xz freeipa-2f6712893be5e66260a169c367a4607be6043d11.zip |
Build: fix man page distribution
By default automake does not distribute man pages. This marks then with
dist_ prefix to force their distribution in tarball.
https://fedorahosted.org/freeipa/ticket/6418
Reviewed-By: Martin Basti <mbasti@redhat.com>
Reviewed-By: Christian Heimes <cheimes@redhat.com>
-rw-r--r-- | client/man/Makefile.am | 4 | ||||
-rw-r--r-- | install/tools/man/Makefile.am | 4 | ||||
-rw-r--r-- | ipatests/man/Makefile.am | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/client/man/Makefile.am b/client/man/Makefile.am index 1f067ab40..f81f10f47 100644 --- a/client/man/Makefile.am +++ b/client/man/Makefile.am @@ -4,7 +4,7 @@ AUTOMAKE_OPTIONS = 1.7 NULL = -man1_MANS = \ +dist_man1_MANS = \ ipa-getkeytab.1 \ ipa-rmkeytab.1 \ ipa-client-install.1 \ @@ -13,7 +13,7 @@ man1_MANS = \ ipa-join.1 \ ipa.1 -man5_MANS = \ +dist_man5_MANS = \ default.conf.5 install-data-hook: diff --git a/install/tools/man/Makefile.am b/install/tools/man/Makefile.am index cb5bb152e..6243a9d94 100644 --- a/install/tools/man/Makefile.am +++ b/install/tools/man/Makefile.am @@ -4,7 +4,7 @@ AUTOMAKE_OPTIONS = 1.7 NULL= -man1_MANS = \ +dist_man1_MANS = \ ipa-replica-conncheck.1 \ ipa-replica-install.1 \ ipa-replica-manage.1 \ @@ -29,7 +29,7 @@ man1_MANS = \ ipa-winsync-migrate.1 \ $(NULL) -man8_MANS = \ +dist_man8_MANS = \ ipactl.8 \ ipa-upgradeconfig.8 \ $(NULL) diff --git a/ipatests/man/Makefile.am b/ipatests/man/Makefile.am index fcd3d1d36..23a91f0a5 100644 --- a/ipatests/man/Makefile.am +++ b/ipatests/man/Makefile.am @@ -4,7 +4,7 @@ AUTOMAKE_OPTIONS = 1.7 NULL= -man1_MANS = \ +dist_man1_MANS = \ ipa-run-tests.1 \ ipa-test-config.1 \ ipa-test-task.1 \ |