From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Neil Jerram Newsgroups: gmane.lisp.guile.devel Subject: [PATCH] Fix typo in configure.ac Date: Fri, 01 Oct 2010 00:14:09 +0100 Message-ID: <87vd5makou.fsf@ossau.uklinux.net> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: dough.gmane.org 1285888496 9152 80.91.229.12 (30 Sep 2010 23:14:56 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 30 Sep 2010 23:14:56 +0000 (UTC) To: guile-devel@gnu.org Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Fri Oct 01 01:14:55 2010 Return-path: Envelope-to: guile-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1P1SKz-0001Kf-RO for guile-devel@m.gmane.org; Fri, 01 Oct 2010 01:14:54 +0200 Original-Received: from localhost ([127.0.0.1]:53873 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1P1SKz-000343-2Z for guile-devel@m.gmane.org; Thu, 30 Sep 2010 19:14:53 -0400 Original-Received: from [140.186.70.92] (port=56998 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1P1SKv-00032m-46 for guile-devel@gnu.org; Thu, 30 Sep 2010 19:14:49 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1P1SKu-0004nJ-15 for guile-devel@gnu.org; Thu, 30 Sep 2010 19:14:48 -0400 Original-Received: from mail3.uklinux.net ([80.84.72.33]:55876) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1P1SKt-0004hx-T8 for guile-devel@gnu.org; Thu, 30 Sep 2010 19:14:47 -0400 Original-Received: from arudy (unknown [78.149.119.168]) by mail3.uklinux.net (Postfix) with ESMTP id B0E8E1F676C for ; Fri, 1 Oct 2010 00:14:10 +0100 (BST) Original-Received: from neil-laptop (unknown [192.168.1.5]) by arudy (Postfix) with ESMTP id EA1D938013 for ; Fri, 1 Oct 2010 00:14:15 +0100 (BST) User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4-2.6 X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.devel:10972 Archived-At: --=-=-= I noticed that my ./configure output includes ./configure: line 31873: text: command not found Looks like a simple typo, which is fixed by the attached patch. OK to push? Thanks, Neil --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0001-Fix-typo-in-configure.ac.patch >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 --=-=-=--