From owner-freebsd-perl@FreeBSD.ORG Sun Aug 17 21:08:30 2014 Return-Path: Delivered-To: perl@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A101DD57; Sun, 17 Aug 2014 21:08:30 +0000 (UTC) Received: from mail-oa0-x236.google.com (mail-oa0-x236.google.com [IPv6:2607:f8b0:4003:c02::236]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 609463286; Sun, 17 Aug 2014 21:08:30 +0000 (UTC) Received: by mail-oa0-f54.google.com with SMTP id n16so3507812oag.27 for ; Sun, 17 Aug 2014 14:08:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=ePN24eJjg/QwZ/ylsCV3YNPGuXLP3E0I2qXBCm+aBdI=; b=PeDpqReOM2Ker4mzr7dokdRc8jD7ySAVCrA9+N04h4xDvJaq0fBNxAl4pHBneTXjRt qptL8QppL7QtqxhBqnPcd14cSNXs+VuttDrA8Tfcr3aIJZeOVfX/nvRIXyoI4B9CjnUT 1oAa5TIMfn9XPJhPM0WwuAvv8hQE1jBYYsQz/MjHvwiXe3+lUbtQjSwC/uawgMiITNYS j7tKoVP7EFavOpT3dR8zRW93rxKeneCp1dHl8Jvit/+h7v/y1sY7CSA6GwSjDAYdZXix yP2tmoSnsehW5amgbMGHOS3DN0an8PElpy8GiI/Embd0MYWoRZVzLRbhDDw2y6UIuLLP CnSw== MIME-Version: 1.0 X-Received: by 10.60.52.5 with SMTP id p5mr32563822oeo.55.1408309709576; Sun, 17 Aug 2014 14:08:29 -0700 (PDT) Received: by 10.182.81.4 with HTTP; Sun, 17 Aug 2014 14:08:29 -0700 (PDT) In-Reply-To: <53F10B75.20405@gmx.de> References: <53F0F536.9000708@gmx.de> <53F10B75.20405@gmx.de> Date: Mon, 18 Aug 2014 01:08:29 +0400 Message-ID: Subject: Re: Mk/Uses/perl.mk possible regression From: Andrej Zverev To: olli hauer Content-Type: text/plain; charset=UTF-8 Cc: Olli Hauer , perl X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: maintainer of a number of perl-related ports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Aug 2014 21:08:30 -0000 Well. To be clear. Let think if you have "run build" by default. Now you added fixpacklist and everything is good as you expected. But now you want remove "build".. but but you can't :-) thats is why such logic there. I think most part have such logic. On Mon, Aug 18, 2014 at 12:07 AM, olli hauer wrote: > On 2014-08-17 21:00, Andrej Zverev wrote: >> FOO = #nothing >> FOO+= something >> = something >> >> so if USE_PERL5 = #nothing it will be "run build" by default, since >> you overriding in before .mk file you need explicitly declare >> second part. Like USE_PERL5= run build fixpacklist or USE_PERL5= run >> build and USE_PERL5+= fixpacklist. >> >> You can always check via make -VUSE_PERL5 what you'll get. > > Indeed this will do the trick, I haven't expect this is required. > > -- > olli