blob: a7a28536fb365e2836c39cd9ddafb99357e66da0 [file] [log] [blame]
Patrick Williams8dd68482022-10-04 07:57:18 -05001From 1ab999aa5a7a21329bab13e05f843e5e029493e1 Mon Sep 17 00:00:00 2001
Brad Bishope42b3e32020-01-15 22:08:42 -05002From: =?UTF-8?q?Andr=C3=A9=20Draszik?= <git@andred.net>
3Date: Mon, 6 Jan 2020 15:10:30 +0000
Patrick Williams8dd68482022-10-04 07:57:18 -05004Subject: [PATCH 2/2] build: enable serial-tests automake option (for ptest)
Brad Bishope42b3e32020-01-15 22:08:42 -05005MIME-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8
9For ptest, we need to be able to compile the tests without
10running them.
11
12Enabling the serial-tests automake option will add
13buildtest-TESTS and runtest-TESTS makefile targets, the
14former being what we want.
15
16Signed-off-by: André Draszik <git@andred.net>
17---
18 configure.ac | 2 +-
19 1 file changed, 1 insertion(+), 1 deletion(-)
20
21diff --git a/configure.ac b/configure.ac
Patrick Williams8dd68482022-10-04 07:57:18 -050022index 079fef9a1a52..058b5504b9b7 100644
Brad Bishope42b3e32020-01-15 22:08:42 -050023--- a/configure.ac
24+++ b/configure.ac
Patrick Williams8dd68482022-10-04 07:57:18 -050025@@ -3,7 +3,7 @@ AC_INIT(onig, 6.9.8)
Brad Bishope42b3e32020-01-15 22:08:42 -050026
27 AC_CONFIG_MACRO_DIR([m4])
28
29-AM_INIT_AUTOMAKE([-Wno-portability])
30+AM_INIT_AUTOMAKE([-Wno-portability serial-tests])
31 AC_CONFIG_HEADERS([src/config.h])
32
33
34--
Patrick Williams8dd68482022-10-04 07:57:18 -0500352.35.1
Brad Bishope42b3e32020-01-15 22:08:42 -050036