>From 2c5d8c7df79421b5846583256c551ffd26a527b8 Mon Sep 17 00:00:00 2001 From: Neil Jerram Date: Fri, 1 Oct 2010 00:11:18 +0100 Subject: [PATCH] Fix typo in configure.ac Fixes an error when running ./configure: ./configure: line 31873: text: command not found * configure.ac: Change "text" to "test", in libltdl-related code. --- configure.ac | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/configure.ac b/configure.ac index b73c3ac..34ec603 100644 --- a/configure.ac +++ b/configure.ac @@ -78,7 +78,7 @@ AC_PROG_LIBTOOL dnl Check for libltdl. AC_LIB_HAVE_LINKFLAGS([ltdl], [], [#include ], [lt_dlopenext ("foo");]) -if text "x$HAVE_LIBLTDL" != "xyes"; then +if test "x$HAVE_LIBLTDL" != "xyes"; then AC_MSG_ERROR([GNU libltdl (Libtool) not found, see README.]) fi -- 1.7.0.4