From owner-freebsd-ports@FreeBSD.ORG Fri Jan 28 01:59:18 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D1B3E16A4CF for ; Fri, 28 Jan 2005 01:59:17 +0000 (GMT) Received: from ybbsmtp06.mail.mci.yahoo.co.jp (ybbsmtp06.mail.mci.yahoo.co.jp [210.80.241.155]) by mx1.FreeBSD.org (Postfix) with SMTP id 7EACE43D2D for ; Fri, 28 Jan 2005 01:59:14 +0000 (GMT) (envelope-from ayakokiko@ybb.ne.jp) Received: from unknown (HELO gorgon.near.this) (219.11.234.11 with poptime) by ybbsmtp06.mail.mci.yahoo.co.jp with SMTP; 28 Jan 2005 01:59:13 -0000 X-Apparently-From: Received: from hydra.near.this (hydra.near.this [10.0.3.20]) by gorgon.near.this (Postfix) with ESMTP id 0EB8E7F24 for ; Fri, 28 Jan 2005 10:59:04 +0900 (JST) Received: by hydra.near.this (Postfix, from userid 100) id 7BDA6A3CA; Fri, 28 Jan 2005 10:59:04 +0900 (JST) Date: Fri, 28 Jan 2005 10:59:02 +0900 From: horio shoichi To: freebsd-ports@freebsd.org In-Reply-To: <41F92D4D.3080505@daltons.ca> References: <41F91E81.90400@daltons.ca> <20050127180038.GZ80512@numachi.com> <41F92D4D.3080505@daltons.ca> X-Mailer: Sylpheed-Claws 1.0.0 (GTK+ 1.2.10; i386-portbld-freebsd4.9) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Message-Id: <20050128.015904.bd797200501680e5.10.0.3.20@bugsgrief.net> Subject: Re: Error portupgrading openssl X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Jan 2005 01:59:18 -0000 On Thu, 27 Jan 2005 11:05:01 -0700 Aaron Dalton wrote: > Brian Reichert wrote: > > On Thu, Jan 27, 2005 at 10:01:53AM -0700, Aaron Dalton wrote: > > > >>When I try to portupgrade or simply make security/openssl I get the > >>following error code: > >> > >>/bin/sh:Argument list too long > >> > > > > I've seen this when I have OPENSSL_OVERWRITE_BASE set; are you doing that? > > > > Nay. No such environment variable set. I have made no environment > changes since my last upgrade of openssl. > > Aaron > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" > I saw the same message. This seems a genuine problem since a command around do-fetch has 64101 bytes long. Maybe MLINK handling moved elsewhere to vacate arg space. Meanwhile try something like: % env - USER="$USER" HOME="$HOME" PATH="$PATH" \ ANYTHING_ELSE="$ANYTHING_ELSE" \ make build horio shoichi