From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: Re: [PATCH] mk: fix libs installation when installing sdk Date: Fri, 15 Dec 2017 11:19:57 +0100 Message-ID: <7350468.cg4rjIInEc@xps> References: <20171214142411.25375-1-olivier.matz@6wind.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Cc: dev@dpdk.org, Samuel Gauthier To: Olivier Matz 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) In-Reply-To: <20171214142411.25375-1-olivier.matz@6wind.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 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.