summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorNeil Jerram <neil@ossau.uklinux.net>2010-10-01 00:11:18 +0100
committerAndy Wingo <wingo@pobox.com>2010-10-01 16:01:35 +0200
commitd0110327ab0c95f245d2e72846ed1f7661232f18 (patch)
treebee2771a6c045f2d423b32eb4cdfd43802a7b51f /configure.ac
parente2e2631d7529842d3667573312c819cbeb7adc25 (diff)
downloadguile-d0110327ab0c95f245d2e72846ed1f7661232f18.tar.gz
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.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index b73c3ac56..34ec60356 100644
--- a/configure.ac
+++ b/configure.ac
@@ -78,7 +78,7 @@ AC_PROG_LIBTOOL
dnl Check for libltdl.
AC_LIB_HAVE_LINKFLAGS([ltdl], [], [#include <ltdl.h>],
[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