diff options
author | Tijl Coosemans <tijl@FreeBSD.org> | 2023-01-03 11:10:35 +0000 |
---|---|---|
committer | Tijl Coosemans <tijl@FreeBSD.org> | 2023-02-01 11:05:19 +0000 |
commit | 1414c99d7c003c64cfaa169de6d4e8a9f13aaa9e (patch) | |
tree | b8c175666b6f984e456deb61625d63bcccddfc19 | |
parent | 8672992ef7f072f87304e953231de77179143f1d (diff) | |
download | ports-1414c99d7c003c64cfaa169de6d4e8a9f13aaa9e.tar.gz ports-1414c99d7c003c64cfaa169de6d4e8a9f13aaa9e.zip |
devel/gettext-tools: Compress archive.dir.tar with xz
The configure script falls back to other compression formats
(bzip2, git, gzip, ...) when it fails to detect xz. This causes pkg
to complain about a pkg-plist error. Force the configure script to
use xz so it prints a clearer error message when xz fails.
PR: 268663
-rw-r--r-- | devel/gettext-tools/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/devel/gettext-tools/Makefile b/devel/gettext-tools/Makefile index 939d5f618421..4cb854f6ba66 100644 --- a/devel/gettext-tools/Makefile +++ b/devel/gettext-tools/Makefile @@ -25,7 +25,7 @@ CPE_VENDOR= gnu GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-csharp --disable-java --with-included-glib \ --with-included-libcroco --with-included-libunistring \ - --with-included-libxml --without-emacs --without-git \ + --with-included-libxml --with-xz --without-emacs \ ac_cv_lib_rt_sched_yield=no INSTALL_TARGET= install-strip TEST_TARGET= check |