Skip to content

Commit 15b0903

Browse files
committed
Fix bootstrap script
It fixed two issues: - AM_GNU_GETTEXT in AX_REQUIRE_DEFINED caused error during autoconf, because AM_GNU_GETTEXT is now forbidden to use without arguments. Remove the AX_REQUIRE_DEFINED - if AM_GNU_GETTEXT is missing, autoconf will fail later anyway - AM_GNU_GETTEXT_VERSION and AM_GNU_GETTEXT were not found during autoconf - use AC_CONFIG_MACRO_DIR to tell autoconf to search in local generated directory m4 Fixes #416
1 parent 6d42a66 commit 15b0903

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
AC_INIT(system-config-printer, 1.5.18)
22
AC_CONFIG_SRCDIR(system-config-printer.py)
33
AM_INIT_AUTOMAKE([dist-xz dist-bzip2 subdir-objects 1.6])
4+
AC_CONFIG_MACRO_DIR([m4])
45
AM_GNU_GETTEXT_VERSION(0.20)
5-
AX_REQUIRE_DEFINED([AM_GNU_GETTEXT])
66
AM_GNU_GETTEXT([external])
77
AM_PATH_PYTHON([3])
88
PACKAGE="AC_PACKAGE_NAME"

0 commit comments

Comments
 (0)