From patchwork Tue Dec 22 13:13:15 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Christian Ehrhardt X-Patchwork-Id: 9626 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [IPv6:::1]) by dpdk.org (Postfix) with ESMTP id 843083005; Tue, 22 Dec 2015 14:13:30 +0100 (CET) Received: from youngberry.canonical.com (youngberry.canonical.com [91.189.89.112]) by dpdk.org (Postfix) with ESMTP id D0671952 for ; Tue, 22 Dec 2015 14:13:28 +0100 (CET) Received: from 1.general.paelzer.uk.vpn ([10.172.196.172] helo=Weiknorze.fritz.box) by youngberry.canonical.com with esmtpsa (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.76) (envelope-from ) id 1aBMkq-0000U5-KC; Tue, 22 Dec 2015 13:13:28 +0000 From: Christian Ehrhardt To: dev@dpdk.org Date: Tue, 22 Dec 2015 14:13:15 +0100 Message-Id: <1450789995-23700-1-git-send-email-christian.ehrhardt@canonical.com> X-Mailer: git-send-email 1.9.1 Subject: [dpdk-dev] [PATCH] mk: Fix examples install path 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Depending on non-doc targets being built before and the setting of DESTDIR the examples dir could in some cases not end up in the right target. Reason is just a typo variable reference in the copy target. Signed-off-by: Christian Ehrhardt --- [diffstat] rte.sdkinstall.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) [diff] diff --git a/mk/rte.sdkinstall.mk b/mk/rte.sdkinstall.mk index c159bf7..0db15c6 100644 --- a/mk/rte.sdkinstall.mk +++ b/mk/rte.sdkinstall.mk @@ -157,4 +157,4 @@ ifneq ($(wildcard $O/doc/*/*/*pdf),) $(Q)$(call rte_mkdir, $(DESTDIR)$(docdir)/guides) $(Q)cp -a $O/doc/*/*/*pdf $(DESTDIR)$(docdir)/guides endif - $(Q)cp -a $(RTE_SDK)/examples $(DESTDIR)$(datadir) + $(Q)cp -a $(RTE_SDK)/examples $(DESTDIR)$(docdir)