From 60d439d10f42552e84ce33e25d9c20b6a1c6357b Mon Sep 17 00:00:00 2001 From: Olly Betts Date: Mon, 25 May 2015 01:11:17 +1200 Subject: [PATCH] configure.ac: Fix configure test for whether $CLI can run CSharp programs - previously it would always fail, which would mean that the CSharp tests wouldn't be run if CSharp programs can't be run directly. --- xapian-bindings/ChangeLog | 7 +++++++ xapian-bindings/configure.ac | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/xapian-bindings/ChangeLog b/xapian-bindings/ChangeLog index e828ed9d6..104962249 100644 --- a/xapian-bindings/ChangeLog +++ b/xapian-bindings/ChangeLog @@ -1,3 +1,10 @@ +Sun May 24 13:07:47 GMT 2015 Olly Betts + + * configure.ac: Fix configure test for whether $CLI can run CSharp + programs - previously it would always fail, which would mean that + the CSharp tests wouldn't be run if CSharp programs can't be run + directly. + Fri May 22 06:13:49 GMT 2015 Olly Betts * NEWS: Update. diff --git a/xapian-bindings/configure.ac b/xapian-bindings/configure.ac index 22109bb7f..cc87f3d22 100644 --- a/xapian-bindings/configure.ac +++ b/xapian-bindings/configure.ac @@ -773,7 +773,7 @@ if test no != "$with_csharp" ; then AC_ARG_VAR(CLI, [CSharp bytecode interpreter (optional - only needed to run CSharp testsuite with)]) if test -n "$CLI" ; then AC_MSG_CHECKING([whether $CLI can run CSharp programs]) - if OK = "`$CLI ./conftest.exe 2> /dev/null`" ; then + if test OK = "`$CLI ./conftest.exe 2> /dev/null`" ; then AC_MSG_RESULT(yes) RUN_CSHARP=$CLI else -- 2.11.4.GIT