From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out3-smtp.messagingengine.com (out3-smtp.messagingengine.com [66.111.4.27]) by dpdk.org (Postfix) with ESMTP id F0B81237 for ; Fri, 15 Dec 2017 11:19:58 +0100 (CET) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 749F120BC3; Fri, 15 Dec 2017 05:19:58 -0500 (EST) Received: from frontend2 ([10.202.2.161]) by compute1.internal (MEProxy); Fri, 15 Dec 2017 05:19:58 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= cc:content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc; s=mesmtp; bh=3yogtLvCgCG+8PYTpS0nuqFP/i ypLVvpebQd0X58Z8s=; b=YpsiSBFXXGUdfPbddufNa2RJ1o0aC9KtuQnLgHBj8m 46mCdx82IvW8NDtQhWApUYNfiY4k7Y1F1pGbukGsgC2XKoykqlDXtCmsk8sS6ng1 Rn9KJxvnk9SzNyENRslXoZ3+mHu7i2yZ8/KSQ4kV4k6efTSGQfgRzqiyVJ1XO4DB 4= 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-sender:x-me-sender:x-sasl-enc; s=fm1; bh=3yogtL vCgCG+8PYTpS0nuqFP/iypLVvpebQd0X58Z8s=; b=XOzQCxKSrO58phuif9NhT9 SEjnCGpXASBJy78fpebgBhmkpqD/0Bf+B1wmx+VOir3Nq0wVrDg1zUHotQp7JJuX Wz6DPoJFTSv83hr+CLI9DUlOMzSJdZ7CrTLpx8oloKmR4l+CCKhAf6Wv7z1wFWoc WcCLFvSHevfZh7+AAfsm2c4E0ZU0IembH155r8o+kpwbW0hyafV9Lx3eTJKr0OF8 AnZsPIXCGOkR9km2FJ9LcpSa/gUDfDLIdL6pJ7PgtM+TCsbOFkljkOaRsYaObkJF PZHBNZ1vcbUV6ozfYOmPaTrwdl4v/GEvI9gvJgkzFLl6Wqne/4TrVrrM/Y3OVchQ == X-ME-Sender: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 1E67B244AB; Fri, 15 Dec 2017 05:19:58 -0500 (EST) From: Thomas Monjalon To: Olivier Matz Cc: dev@dpdk.org, Samuel Gauthier Date: Fri, 15 Dec 2017 11:19:57 +0100 Message-ID: <7350468.cg4rjIInEc@xps> In-Reply-To: <20171214142411.25375-1-olivier.matz@6wind.com> References: <20171214142411.25375-1-olivier.matz@6wind.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] mk: fix libs installation when installing sdk 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: Fri, 15 Dec 2017 10:19:59 -0000 14/12/2017 15:24, Olivier Matz: > @@ -157,6 +157,8 @@ install-sdk: > $(Q)cp -a $O/.config $(DESTDIR)$(targetdir) > $(Q)cp -a $O/app/dpdk-pmdinfogen $(DESTDIR)$(targetdir)/app > $(Q)$(call rte_symlink, $(DESTDIR)$(includedir), $(DESTDIR)$(targetdir)/include) > + $(Q)$(call rte_mkdir, $(DESTDIR)$(libdir)) > + $(Q)cp -a $O/lib/* $(DESTDIR)$(libdir) > $(Q)$(call rte_symlink, $(DESTDIR)$(libdir), $(DESTDIR)$(targetdir)/lib) The libs are already installed with "make install-runtime". Either we add a dependency between install-sdk and install-runtime, or we clearly document it.