From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f44.google.com (mail-wm0-f44.google.com [74.125.82.44]) by dpdk.org (Postfix) with ESMTP id 886D3567E for ; Thu, 3 Dec 2015 18:07:09 +0100 (CET) Received: by wmuu63 with SMTP id u63so30056247wmu.0 for ; Thu, 03 Dec 2015 09:07:09 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:organization:user-agent :in-reply-to:references:mime-version:content-transfer-encoding :content-type; bh=pboXCV7jiWwrB8ZBmneFe8cvhJWF1zc2aSHv6Ta1J5E=; b=GxGaq/lvcGlbOQ9jxKhSC3PQD6LOd7sUnLls7JMYI8+IDxpxDqXDOdYqwLaVWuMl5j mV/HlEcPq4+3aj3a3u50E46A1yXWVcoQYXI7q/EyaeHZNhRUPhPuj/6h8nDB8Ne6zu6u QYmMrjahFrY1fW7ReQY5BMHQGxNI91Vb75Mcv81J9NC3dHW/VrvYCXG/H4Qw3vymkCpo sueKYFShopT+LK21sovQtDVc1uZBMVGwtwkiA+00442yL6John2cq1rgGDrsAIOVtpG0 5Kzcm1HBujUR1zxMU8sUgo8NesD71HrtB7ykz3/aISNudbSdgmmTYaIO+3f6LZfp1l7B weqg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:organization :user-agent:in-reply-to:references:mime-version :content-transfer-encoding:content-type; bh=pboXCV7jiWwrB8ZBmneFe8cvhJWF1zc2aSHv6Ta1J5E=; b=JB1ZKU+d2AEafKZH3ISNBq6o5dw/v7R3cDgZLQQBAQeJFB6L7Trh30z68dcnxXLuwQ q+sDc48vdrTenaNLEhUp3XxSfkRp4r9Zr1qXUjXD/38CkCfQjxGE0LWoC9f+CAiWKmT1 QPsuDdIcQCgMpxwnVSLiqkWgNisjqc1/M4nOQRP89K1N+F1Pbax1Bp1VTqnfuUlFmG7U 5dfn4RvdeNL61A1uN+rNb4Ht2fjlOCU2z3REA3ByGid1WpQbOOYocQwV8w/Du0GxRxlx 82gkNQizIqHnXd2JjOXaIqq2qjXcjdfMjgk/StetL4zhzBbM7E1jYP4BSwV61xHP9UpZ zZhw== X-Gm-Message-State: ALoCoQnsgq9/H1Y3wOgsBwlavcTHnEArD3DY8mm8LXPcYsHr8QfjI3tMnp7qVCv7+4LNlPTCpG3S X-Received: by 10.194.188.49 with SMTP id fx17mr13368712wjc.47.1449162429226; Thu, 03 Dec 2015 09:07:09 -0800 (PST) Received: from xps13.localnet (153.20.90.92.rev.sfr.net. [92.90.20.153]) by smtp.gmail.com with ESMTPSA id hw1sm8468870wjb.6.2015.12.03.09.07.07 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 03 Dec 2015 09:07:08 -0800 (PST) From: Thomas Monjalon To: Bruce Richardson Date: Thu, 03 Dec 2015 18:05:55 +0100 Message-ID: <1834388.eHZzREgmng@xps13> Organization: 6WIND User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <20151203153140.GA11472@bricha3-MOBL3> References: <1449118929-19962-1-git-send-email-thomas.monjalon@6wind.com> <1449150340-21984-1-git-send-email-thomas.monjalon@6wind.com> <20151203153140.GA11472@bricha3-MOBL3> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH v3 00/13] standard make install X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Dec 2015 17:07:09 -0000 2015-12-03 15:31, Bruce Richardson: > On Thu, Dec 03, 2015 at 02:45:27PM +0100, Thomas Monjalon wrote: > > Following the recent discussions, this is a proposal to have a standard > > installation process while keeping compatibility with most of the old > > behaviours. [...] > > Local install example with old (compatible) command: > > > > # make install T=x86_64-native-linuxapp-gcc DESTDIR=install > > > > would be equivalent to: > > > > # make config T=x86_64-native-linuxapp-gcc 0=x86_64-native-linuxapp-gcc > > # make O=x86_64-native-linuxapp-gcc > > # make install O=x86_64-native-linuxapp-gcc prefix= DESTDIR=install > > While I have no huge objections to this patchset, I don't like the fact that > install does completely different things depending upon whether certain variables > are defined or not. I believe the "old" default behaviour for install was > poorly named, and while it's behaviour should be kept, a new name should be given > to it to avoid having the target "install" so heavily overloaded. Yes. It is a first step to fix a common complain. The we can remove the T= syntax or move the "all-in-one feature" to another command name. I suggest "make config-build-install" :)