diff options
author | Thomas Bracht Laumann Jespersen <t@laumann.xyz> | 2023-09-15 19:50:42 +0000 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2023-09-16 10:00:18 +0300 |
commit | 9acf33072928e263b965ca6f8d3d7a5ec910cf46 (patch) | |
tree | b6d455f27c91b7f024bb2272e3f54abacd9f16b0 /app-misc | |
parent | profiles: unmask thunderbird-115 (diff) | |
download | gentoo-9acf33072928e263b965ca6f8d3d7a5ec910cf46.tar.gz gentoo-9acf33072928e263b965ca6f8d3d7a5ec910cf46.tar.bz2 gentoo-9acf33072928e263b965ca6f8d3d7a5ec910cf46.zip |
app-misc/regex-markup: fix tests
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>
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/regex-markup/files/regex-markup-0.10.0-r2-configure.patch | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/app-misc/regex-markup/files/regex-markup-0.10.0-r2-configure.patch b/app-misc/regex-markup/files/regex-markup-0.10.0-r2-configure.patch index 5ea8efa2834e..5d082944c2c4 100644 --- a/app-misc/regex-markup/files/regex-markup-0.10.0-r2-configure.patch +++ b/app-misc/regex-markup/files/regex-markup-0.10.0-r2-configure.patch @@ -1,10 +1,17 @@ - configure.ac | 1 + - 1 file changed, 1 insertion(+) +Ensure tests run using serial test harness (bug #914212), and do not +call ar directly (bug #722328) -diff --git a/configure.ac b/configure.ac -index 0b98557..3e24e2e 100644 --- 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 |