commit: c3ef7ef919ced165df4888d89b96936fbc87506b
Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 18 19:49:08 2020 +0000
Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Fri Dec 18 19:49:44 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3ef7ef9
sys-fs/xfsprogs: forcably disable zipped manpages
In m4/manual_format.m4, AC_MANUAL_FORMAT checks to see if man.1.gz exists.
If it does, the build system assumes we want it to compress the XFS man
pages using gzip.
Set the HAVE_ZIPPED_MANPAGES make variable to disable this automagic
behavior.
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
sys-fs/xfsprogs/xfsprogs-5.10.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys-fs/xfsprogs/xfsprogs-5.10.0.ebuild
b/sys-fs/xfsprogs/xfsprogs-5.10.0.ebuild
index 1661c39dc4e..2086d0f89f6 100644
--- a/sys-fs/xfsprogs/xfsprogs-5.10.0.ebuild
+++ b/sys-fs/xfsprogs/xfsprogs-5.10.0.ebuild
@@ -88,8 +88,8 @@ src_compile() {
}
src_install() {
- emake DIST_ROOT="${ED}" install
- emake DIST_ROOT="${ED}" install-dev
+ emake DIST_ROOT="${ED}" HAVE_ZIPPED_MANPAGES=false install
+ emake DIST_ROOT="${ED}" HAVE_ZIPPED_MANPAGES=false install-dev
gen_usr_ldscript -a handle
}