From owner-freebsd-stable@FreeBSD.ORG Fri Mar 3 15:42:26 2006 Return-Path: X-Original-To: freebsd-stable@FreeBSD.ORG Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A071216A420 for ; Fri, 3 Mar 2006 15:42:26 +0000 (GMT) (envelope-from freebsd@milfordmail.com) Received: from smtp114.sbc.mail.mud.yahoo.com (smtp114.sbc.mail.mud.yahoo.com [68.142.198.213]) by mx1.FreeBSD.org (Postfix) with SMTP id 0D45843D55 for ; Fri, 3 Mar 2006 15:42:24 +0000 (GMT) (envelope-from freebsd@milfordmail.com) Received: (qmail 61464 invoked from network); 3 Mar 2006 15:42:24 -0000 Received: from unknown (HELO mail.milfordmail.com) (milfordmailexim4@sbcglobal.net@70.254.189.66 with login) by smtp114.sbc.mail.mud.yahoo.com with SMTP; 3 Mar 2006 15:42:24 -0000 Received: from pentium4.milfordmail.com ([192.168.254.221] helo=pentium4) by mail.milfordmail.com with asmtp (TLSv1:RC4-MD5:128) (Exim 4.24; FreeBSD) id 1FFCQB-0002gd-Ep for freebsd-stable@FreeBSD.ORG; Fri, 03 Mar 2006 09:42:23 -0600 From: "Bill Milford" To: Date: Fri, 3 Mar 2006 09:44:17 -0600 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook 11 In-Reply-To: <20060303112026.GA10522@mid.pc5.i.0x5.de> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2670 Thread-Index: AcY+tJypkuQbaK4xQlOw73+0ibE1LgAF/tEg X-Scanner: exiscan-acl for exim4 (http://duncanthrax.net/exiscan/) f27f476f0a2ade87d335fff426fa18a61739464c Cc: Subject: RE: configure scripts ignores parameters X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Mar 2006 15:42:26 -0000 > -----Original Message----- > From: owner-freebsd-stable@freebsd.org [mailto:owner-freebsd-stable@freebsd.org] On Behalf Of > Nicolas Rachinsky > Sent: Friday, March 03, 2006 5:20 AM > To: freebsd-stable@FreeBSD.ORG > Subject: Re: configure scripts ignores parameters > > * "Elisey O. Savateev" [2006-03-03 16:10 +0500]: > > Fri, 3 Mar 2006 11:56:09 +0100 > > Nicolas Rachinsky wrote: > > > > > > > > Do you have shells/bash (bash-3.1.10) installed? > > > > > > > Yes. I have. > > > I had one problem here, but unfortunately not the time to really look > at it (and I don't have time to try it again). > > My bash3 here did not correctly process > | for foo > | do echo "$foo" > | done > A similar contruct seems to be in some (most, all?) configure scripts, > which automatically use bash to be executed (if it's available). > > I installed shells/bash2 (bash-2.05b.007_4) and my problem > disappeared. > > HTH, > Nicolas > > -- > http://www.rachinsky.de/nicolas [Bill Milford] I am having the some problem. My temporary fix is to either install bash-3.0.16_1 which is the latest bash package available or you can set CONFIG_SHELL=/bin/sh in your environment. The configure scripts will use bash if available and when it re-executes itself, somehow the command line options do not get passed correctly. Even the most simple option: ./configure --help fails. It was causing the previously reported issues with the apr-db4 port. It causes problems for me in the OpenCA configure script. I suspect that it will affect many ports that use ./configure scripts to pass parameters. I am going to re build all of my ports when this is finally resolved.