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 3/5] Make explicit that GUILE_FOR_BUILD is only used when cross-compiling Date: Mon, 21 Mar 2011 22:19:19 +0000 Message-ID: <1300745961-4287-4-git-send-email-neil@ossau.uklinux.net> References: <1300745961-4287-1-git-send-email-neil@ossau.uklinux.net> NNTP-Posting-Host: lo.gmane.org X-Trace: dough.gmane.org 1300747600 5440 80.91.229.12 (21 Mar 2011 22:46:40 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Mon, 21 Mar 2011 22:46:40 +0000 (UTC) Cc: Neil Jerram To: guile-devel@gnu.org Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Mon Mar 21 23:46:34 2011 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 1Q1nrq-00030M-7m for guile-devel@m.gmane.org; Mon, 21 Mar 2011 23:46:33 +0100 Original-Received: from localhost ([127.0.0.1]:37053 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Q1ncn-0008FE-Vs for guile-devel@m.gmane.org; Mon, 21 Mar 2011 18:30:58 -0400 Original-Received: from [140.186.70.92] (port=40898 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Q1nSM-0003cZ-B4 for guile-devel@gnu.org; Mon, 21 Mar 2011 18:20:14 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Q1nSG-0002Xv-Vi for guile-devel@gnu.org; Mon, 21 Mar 2011 18:20:08 -0400 Original-Received: from mail3.uklinux.net ([80.84.72.33]:41570) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Q1nSG-0002Xk-RM for guile-devel@gnu.org; Mon, 21 Mar 2011 18:20:04 -0400 Original-Received: from arudy (unknown [78.149.125.161]) by mail3.uklinux.net (Postfix) with ESMTP id 1D6AF1F664C for ; Mon, 21 Mar 2011 22:19:59 +0000 (GMT) Original-Received: from neil-laptop.520b.com (unknown [192.168.11.4]) by arudy (Postfix) with ESMTP id 0869838039; Mon, 21 Mar 2011 22:19:52 +0000 (GMT) X-Mailer: git-send-email 1.7.1 In-Reply-To: <1300745961-4287-1-git-send-email-neil@ossau.uklinux.net> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4-2.6 X-Received-From: 80.84.72.33 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:11951 Archived-At: * configure.ac (GUILE_FOR_BUILD): Change normal build value to 'this-value-will-never-be-used'. --- configure.ac | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/configure.ac b/configure.ac index d033420..616bdda 100644 --- a/configure.ac +++ b/configure.ac @@ -1487,7 +1487,7 @@ if test "$cross_compiling" = "yes"; then AC_MSG_CHECKING(guile for build) GUILE_FOR_BUILD="${GUILE_FOR_BUILD-guile}" else - GUILE_FOR_BUILD='$(preinstguile)' + GUILE_FOR_BUILD='this-value-will-never-be-used' fi ## AC_MSG_CHECKING("if we are cross compiling") -- 1.7.1