From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out5-smtp.messagingengine.com (out5-smtp.messagingengine.com [66.111.4.29]) by dpdk.org (Postfix) with ESMTP id D617D4C91 for ; Wed, 14 Nov 2018 01:46:53 +0100 (CET) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 674BC22326; Tue, 13 Nov 2018 19:46:53 -0500 (EST) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Tue, 13 Nov 2018 19:46:53 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding:content-type; s=mesmtp; bh=loKJqK8sxRJedlpofWBajX5G7NzkdfZnVNzECqodnwc=; b=VCsCdflowwIO smCbJTeql0kxVR0Yn5yz4dqIzEJWQFCdhTc/HLj3o+/siWBou7VAcHLOzgBv738/ Kbh0ZjgEMh44eaiJpLa0E//ohMdG9L59Vn6GgUI2hdn0M6EXCnN70TL5KxR6HZXf XbijzqDkGEo9m29KoyWLWY9hMaaXCGY= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-proxy:x-me-proxy:x-me-sender:x-me-sender :x-sasl-enc; s=fm1; bh=loKJqK8sxRJedlpofWBajX5G7NzkdfZnVNzECqodn wc=; b=RCEWC0VAORXHMfLRI+j4PhlJ44VhIyD7Pmd5nXKI1iJWUGHE1KEfk0bvI X+qaiEap6eWVkubrnglqOd24I/vUMVFZ8xaU2dfsLACNpBOyjLh192UpSQA9tk3a X8hQyNO4PWZ2pMEtwY55Z4V+dETtKGA/powLfQktKPYN19UMig6/QAekc7oDtId+ li2nDTnFwd2NV0Q2j03pB14li9g8YDPvLkikBbwOXd6arsh7ua/O3vxUViW0xN5e p5lXpVl7pc+F+6pXcY//r8U/NV5EUF0V3dEx6FAr5mXOCuHgP8fr6NaAqh1do+Rc QUuGSLxwd4xqARcdX+/KRC78Ye5pg== X-ME-Sender: X-ME-Proxy: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 8F076E4679; Tue, 13 Nov 2018 19:46:52 -0500 (EST) From: Thomas Monjalon To: Bruce Richardson Cc: dev@dpdk.org Date: Wed, 14 Nov 2018 01:46:51 +0100 Message-ID: <15578774.M6kUXS5jGl@xps> In-Reply-To: <20181112122615.62964-1-bruce.richardson@intel.com> References: <20180228171156.91077-1-bruce.richardson@intel.com> <20181112122615.62964-1-bruce.richardson@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v2] mk: allow renaming of build directories X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Nov 2018 00:46:54 -0000 12/11/2018 13:26, Bruce Richardson: > When building using make, the Makefile in the build directory contained > the name of the build directory to be passed as an "O=" parameter to > the DPDK SDK makefiles. Unfortunately, this meant that the compilation > would always fail if the build directory was renamed. To remove this > limitation, we can use $(CURDIR) instead of the directory name. > > Signed-off-by: Bruce Richardson Applied, thanks