39 lines
1013 B
Diff
39 lines
1013 B
Diff
From 1ab999aa5a7a21329bab13e05f843e5e029493e1 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Andr=C3=A9=20Draszik?= <git@andred.net>
|
|
Date: Mon, 6 Jan 2020 15:10:30 +0000
|
|
Subject: [PATCH 2/2] build: enable serial-tests automake option (for ptest)
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
For ptest, we need to be able to compile the tests without
|
|
running them.
|
|
|
|
Enabling the serial-tests automake option will add
|
|
buildtest-TESTS and runtest-TESTS makefile targets, the
|
|
former being what we want.
|
|
|
|
Signed-off-by: André Draszik <git@andred.net>
|
|
---
|
|
Upstream-Status: Pending
|
|
|
|
configure.ac | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
index 079fef9a1a52..058b5504b9b7 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -3,7 +3,7 @@ AC_INIT(onig, 6.9.8)
|
|
|
|
AC_CONFIG_MACRO_DIR([m4])
|
|
|
|
-AM_INIT_AUTOMAKE([-Wno-portability])
|
|
+AM_INIT_AUTOMAKE([-Wno-portability serial-tests])
|
|
AC_CONFIG_HEADERS([src/config.h])
|
|
|
|
|
|
--
|
|
2.35.1
|
|
|