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 2/5] GUILE_FOR_BUILD is only needed by meta/guile.in, not by Makefiles Date: Mon, 21 Mar 2011 22:19:18 +0000 Message-ID: <1300745961-4287-3-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 1300747610 5468 80.91.229.12 (21 Mar 2011 22:46:50 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Mon, 21 Mar 2011 22:46:50 +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:46 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 1Q1ns2-0002kw-Br for guile-devel@m.gmane.org; Mon, 21 Mar 2011 23:46:45 +0100 Original-Received: from localhost ([127.0.0.1]:39499 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Q1nWQ-0005Sn-7P for guile-devel@m.gmane.org; Mon, 21 Mar 2011 18:24:22 -0400 Original-Received: from [140.186.70.92] (port=40898 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Q1nSi-0003cZ-42 for guile-devel@gnu.org; Mon, 21 Mar 2011 18:20:37 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Q1nSB-0002WJ-CC for guile-devel@gnu.org; Mon, 21 Mar 2011 18:20:03 -0400 Original-Received: from mail3.uklinux.net ([80.84.72.33]:41567) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Q1nSB-0002W7-69 for guile-devel@gnu.org; Mon, 21 Mar 2011 18:19:59 -0400 Original-Received: from arudy (unknown [78.149.125.161]) by mail3.uklinux.net (Postfix) with ESMTP id 8CFB31F665A for ; Mon, 21 Mar 2011 22:19:53 +0000 (GMT) Original-Received: from neil-laptop.520b.com (unknown [192.168.11.4]) by arudy (Postfix) with ESMTP id 66DC53801E; 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:11952 Archived-At: * configure.ac: Use AM_SUBST_NOTMAKE for GUILE_FOR_BUILD instead of AC_SUBST. --- configure.ac | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/configure.ac b/configure.ac index 423ae99..d033420 100644 --- a/configure.ac +++ b/configure.ac @@ -1496,7 +1496,7 @@ if test "$cross_compiling" = "yes"; then AC_MSG_RESULT($GUILE_FOR_BUILD) fi AC_ARG_VAR(GUILE_FOR_BUILD,[guile for build system]) -AC_SUBST(GUILE_FOR_BUILD) +AM_SUBST_NOTMAKE(GUILE_FOR_BUILD) ## If we're using GCC, ask for aggressive warnings. GCC_CFLAGS="" -- 1.7.1