From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id F2B37A0471 for ; Fri, 19 Jul 2019 13:37:00 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id D4B534D27; Fri, 19 Jul 2019 13:36:58 +0200 (CEST) Received: from wout2-smtp.messagingengine.com (wout2-smtp.messagingengine.com [64.147.123.25]) by dpdk.org (Postfix) with ESMTP id 3EF5A2BC7; Fri, 19 Jul 2019 13:36:57 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.west.internal (Postfix) with ESMTP id F0892412; Fri, 19 Jul 2019 07:36:55 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Fri, 19 Jul 2019 07:36:56 -0400 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=A0wM3msNCTjPRr5hDwOo3d0T4h56Ea4oiZvKGpPt4hE=; b=ibWjw8p9FkUx pdJlUleJ1LN3so5v+dkMMAMf/tk8U0NVNQ7zwsL6TsLLeMrAMqRpKpR2HoG38Bln OkPMbJXSegDT+m9Lz0fkU/AjxuHvwa+HS3y9+OytwsEgb6MgTTwmbbaPJVMMJme/ tF1Ym0OKT2L2L6FE4zgaDcc6Jh3URTE= 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=fm3; bh=A0wM3msNCTjPRr5hDwOo3d0T4h56Ea4oiZvKGpPt4 hE=; b=It1E8fGG6fiSDP+x7tfdOVInaXpjRg1vA6Cve6DpXSST0wJYT0QXt7yRu KMFCv5GfPoZXi5yOHKuJc9+ODZxJG5Iz1sev4M3NuBaEFa8J5DzLwB6l8ZaTY8UD hpjK/VA5G8C19Ml+A6UUyRvY8MIn+jbu/2KlnxW6Re/vLX4ENQRtKR8yaRVSsJ1h p0jZt3u5e88WKMVagzXcfj1SgtpRhMvCfVLBLbPB7e4xIkVWplcFGZjvgRtk/vAS +uYUvDwQjd8jLt7S+r6/qxJkWKYYEzOavL2p70LSRIJwffK6N/GMBoiXhEd1TOCb 0w/iUf4aLkGYYJL1LXWLvlJ88VfeQ== X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgeduvddrieejgdeggecutefuodetggdotefrodftvf curfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfghnecu uegrihhlohhuthemuceftddtnecusecvtfgvtghiphhivghnthhsucdlqddutddtmdenuc fjughrpefhvffufffkjghfggfgtgesthfuredttddtvdenucfhrhhomhepvfhhohhmrghs ucfoohhnjhgrlhhonhcuoehthhhomhgrshesmhhonhhjrghlohhnrdhnvghtqeenucfkph epjeejrddufeegrddvtdefrddukeegnecurfgrrhgrmhepmhgrihhlfhhrohhmpehthhho mhgrshesmhhonhhjrghlohhnrdhnvghtnecuvehluhhsthgvrhfuihiivgeptd 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 7E09E8005C; Fri, 19 Jul 2019 07:36:54 -0400 (EDT) From: Thomas Monjalon To: "Lipiec, Herakliusz" Cc: "dev@dpdk.org" , "stable@dpdk.org" , "Richardson, Bruce" Date: Fri, 19 Jul 2019 13:36:52 +0200 Message-ID: <5528023.XUqoTqKA7R@xps> In-Reply-To: References: <20190718132912.28250-1-herakliusz.lipiec@intel.com> <1901807.fy38742gHy@xps> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] mk: fix output directory name when compiling with custom kernel header dir 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 19/07/2019 13:09, Lipiec, Herakliusz: > From: Thomas Monjalon [mailto:thomas@monjalon.net] > > 18/07/2019 16:03, Herakliusz Lipiec: > > > -kerneldir ?= /lib/modules/$(shell uname -r)/extra/dpdk > > > +kerneldir ?= $(subst /build,/extra/dpdk,$(RTE_KERNELDIR)) > > > > I would suggest another syntax, easier to read: > > > > kerneldir ?= $(RTE_KERNELDIR:/build=/extra/dpdk) > > > I have tried that before and it didn't seem to solve the issue. Why? What is the output of $(info $(kerneldir)) ?