From 7939732f80da327940687ec14e1e6f14e6805961 Mon Sep 17 00:00:00 2001 From: William Pitcock Date: Thu, 19 Jul 2018 17:27:02 -0500 Subject: [PATCH] build: install pkgconf-personality(5) manpage --- Makefile.am | 3 ++- meson.build | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 27cdd6d..bac333f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -146,7 +146,8 @@ libpkgconf_la_LDFLAGS = -no-undefined -version-info 3:0:0 -export-symbols-regex dist_man_MANS = \ man/pkgconf.1 \ man/pkg.m4.7 \ - man/pc.5 + man/pc.5 \ + man/pkgconf-personality.5 pkgconf_LDADD = libpkgconf.la pkgconf_SOURCES = \ diff --git a/meson.build b/meson.build index 6d07e2b..e1e3092 100644 --- a/meson.build +++ b/meson.build @@ -104,4 +104,6 @@ endif install_man('man/pkgconf.1') install_man('man/pkg.m4.7') +install_man('man/pc.5') +install_man('man/pkgconf-personality.5') install_data('pkg.m4', install_dir: 'share/aclocal')