mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-13 19:29:53 +03:00
Fix build error with gettext 0.24. ``` make[2]: Entering directory '/home/buildozer/aports/community/abook/src/abook-0.6.1/po' make[2]: *** No rule to make target '/config.status', needed by 'Makefile'. Stop. ```
13 lines
336 B
Diff
13 lines
336 B
Diff
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -11,7 +11,9 @@
|
|
|
|
AC_USE_SYSTEM_EXTENSIONS
|
|
AM_GNU_GETTEXT([external])
|
|
-AM_GNU_GETTEXT_VERSION([0.18.1])
|
|
+dnl Support for AM_GNU_GETTEXT_REQUIRE_VERSION was added in 0.19.6.
|
|
+AM_GNU_GETTEXT_REQUIRE_VERSION([0.19.6])
|
|
+AM_GNU_GETTEXT_VERSION([0.19.6])
|
|
|
|
AC_DEFUN([ABOOK_EXPAND_PREFIX], [
|
|
$1=$2
|