diff options
author | Neil Jerram <neil@ossau.uklinux.net> | 2010-10-01 00:11:18 +0100 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2010-10-01 16:01:35 +0200 |
commit | d0110327ab0c95f245d2e72846ed1f7661232f18 (patch) | |
tree | bee2771a6c045f2d423b32eb4cdfd43802a7b51f | |
parent | e2e2631d7529842d3667573312c819cbeb7adc25 (diff) | |
download | guile-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.
-rw-r--r-- | configure.ac | 2 |
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 |