mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-22 09:27:32 -08:00
Note from arthurzam: this is fine to do without a revbump, since there is no affect for already installed packages (no rebuild is needed) and those whose build failed will start working now. Closes: https://bugs.gentoo.org/914212 Signed-off-by: Thomas Bracht Laumann Jespersen <t@laumann.xyz> Closes: https://github.com/gentoo/gentoo/pull/32818 Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
23 lines
570 B
Diff
23 lines
570 B
Diff
Ensure tests run using serial test harness (bug #914212), and do not
|
|
call ar directly (bug #722328)
|
|
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -4,7 +4,7 @@
|
|
# Initialization
|
|
AC_PREREQ(2.59)
|
|
AC_INIT(regex-markup, 0.10.0, oskar@osk.mine.nu)
|
|
-AM_INIT_AUTOMAKE
|
|
+AM_INIT_AUTOMAKE([serial-tests])
|
|
AC_CONFIG_SRCDIR([src/remark.c])
|
|
AC_CONFIG_HEADER([config.h])
|
|
|
|
@@ -19,6 +19,7 @@ AC_DEFINE_DIR(PKGDATADIR, datadir/$PACKAGE, [Directory where system-wide rule fi
|
|
# Checks for programs.
|
|
AC_PROG_CC
|
|
AC_PROG_INSTALL
|
|
+AM_PROG_AR
|
|
#AC_PROG_MAKE_SET
|
|
AC_PROG_RANLIB
|
|
AM_PROG_LEX
|