From owner-freebsd-ports@FreeBSD.ORG Mon Jan 20 09:56:47 2014 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 54FF37D4 for ; Mon, 20 Jan 2014 09:56:47 +0000 (UTC) Received: from mail-lb0-x236.google.com (mail-lb0-x236.google.com [IPv6:2a00:1450:4010:c04::236]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D086B168F for ; Mon, 20 Jan 2014 09:56:46 +0000 (UTC) Received: by mail-lb0-f182.google.com with SMTP id w7so4216528lbi.41 for ; Mon, 20 Jan 2014 01:56:45 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-type:content-transfer-encoding; bh=rKcYp5FpXdzv5ngY3272APJ6unLePAcU2phBUFxxG3g=; b=s0ZaxmDhpTEz2e4D2lw/Z9Hhr3TQTCF6H6VDJn0h9RGwOPOAJ2fi540YcqE5LkhoS/ tqxkwvaD+H5bF/J0JYkaTO85u1UC30XGL1LchA15TEowZ/w4so1CrEWGcjNiUKVSfJW1 8W2sr6ZoedwZc4KtFSLU+jiGQTcBi0Idf+NIfRnsmD9k4UmyHuIGoB6Frkvgxq1BjYR7 8lPTxCmtiV4IOziSc2eqsPPQwVyU4gR7IQ8YlRM2yTi2CBTvKe5NO5otac6r4IRS5KMc +sSKh1J3jAAmfyiyV1Kj5dukDc7w/SAxEd8xL+/n9hut/6aMeJr15nO3EUpYDGGvUDK0 TElQ== X-Received: by 10.152.45.71 with SMTP id k7mr10716766lam.26.1390211804982; Mon, 20 Jan 2014 01:56:44 -0800 (PST) Received: from [192.168.1.129] (mau.donbass.com. [92.242.127.250]) by mx.google.com with ESMTPSA id p3sm509737lae.2.2014.01.20.01.56.44 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 20 Jan 2014 01:56:44 -0800 (PST) Message-ID: <52DCF2DB.4050508@gmail.com> Date: Mon, 20 Jan 2014 11:56:43 +0200 From: Volodymyr Kostyrko User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: ports@FreeBSD.org Subject: Re: devel/gmake broken by some recent commit References: <52DCF230.20902@gmail.com> In-Reply-To: <52DCF230.20902@gmail.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Jan 2014 09:56:47 -0000 20.01.2014 11:53, Volodymyr Kostyrko wrote: > Hi all. > > Yesterday it was fine, now it doesn't work: > > # make > ===> gmake-3.82_1 Do not define STAGEDIR in command line. > *** Error code 1 > > This is probably result of r340369. > Yep, the problem is with this commit: # svn diff -r340368:r340369 Index: Mk/bsd.port.mk =================================================================== --- Mk/bsd.port.mk (revision 340368) +++ Mk/bsd.port.mk (revision 340369) @@ -1821,6 +1821,11 @@ .if !defined(NO_STAGE) .include "${PORTSDIR}/Mk/bsd.stage.mk" +.else +# Ignore STAGEDIR if set from make.conf +.undef STAGEDIR +# From command line it is impossible to undefined so we must raise an error +IGNORE= Do not define STAGEDIR in command line .endif .if defined(WITH_PKGNG) If NO_STAGE is defined the port would be ignored. -- Sphinx of black quartz, judge my vow.