From 6392cff8e972bef33575d8d754dce0a6687fe583 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20W=C3=A4ckerlin?= Date: Thu, 6 Apr 2017 08:14:33 +0000 Subject: [PATCH] fixed typo --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index bd00c4c..972dba0 100644 --- a/configure.ac +++ b/configure.ac @@ -64,7 +64,7 @@ AC_ARG_ENABLE(exec, AS_HELP_STRING([--disable-exec], [disable UNIX fork and execute with pipes]), [have_exec="$enableval"], - [if "$MINGW" = "1"; then have_exec="no"; else have_exec="yes"; fi]) + [if test "$MINGW" = "1"; then have_exec="no"; else have_exec="yes"; fi]) AM_CONDITIONAL(HAVE_EXEC, test "$have_exec" = "yes") AC_ARG_ENABLE(regexp, AS_HELP_STRING([--disable-regexp], @@ -89,7 +89,7 @@ AC_ARG_ENABLE(stacktrace, AS_HELP_STRING([--disable-stacktrace], [disable stack trace, use this if you cannot compile the library on your system otherwise and you still want to use the other parts]), [have_stacktrace="$enableval"], - [if "$MINGW" = "1"; then have_stacktrace="no"; else have_stacktrace="yes"; fi]) + [if test "$MINGW" = "1"; then have_stacktrace="no"; else have_stacktrace="yes"; fi]) AM_CONDITIONAL(HAVE_STACKTRACE, test "$have_stacktrace" = "yes") if test "$have_stacktrace" = "yes"; then # Hack for bug: