1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

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.
This commit is contained in:
Neil Jerram 2010-10-01 00:11:18 +01:00 committed by Andy Wingo
parent e2e2631d75
commit d0110327ab

View file

@ -78,7 +78,7 @@ AC_PROG_LIBTOOL
dnl Check for libltdl. dnl Check for libltdl.
AC_LIB_HAVE_LINKFLAGS([ltdl], [], [#include <ltdl.h>], AC_LIB_HAVE_LINKFLAGS([ltdl], [], [#include <ltdl.h>],
[lt_dlopenext ("foo");]) [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.]) AC_MSG_ERROR([GNU libltdl (Libtool) not found, see README.])
fi fi