From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: [PATCH] mk: fix install with minimal shell Date: Wed, 9 Dec 2015 09:03:09 +0100 Message-ID: <1449648189-25185-1-git-send-email-thomas.monjalon@6wind.com> References: <56670CE3.2040108@atendesoftware.pl> To: dev@dpdk.org Return-path: Received: from mail-wm0-f44.google.com (mail-wm0-f44.google.com [74.125.82.44]) by dpdk.org (Postfix) with ESMTP id EDEE15683 for ; Wed, 9 Dec 2015 09:04:32 +0100 (CET) Received: by wmww144 with SMTP id w144so210638011wmw.1 for ; Wed, 09 Dec 2015 00:04:32 -0800 (PST) Received: from localhost.localdomain (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by smtp.gmail.com with ESMTPSA id q4sm6409421wja.6.2015.12.09.00.04.31 for (version=TLSv1/SSLv3 cipher=OTHER); Wed, 09 Dec 2015 00:04:31 -0800 (PST) In-Reply-To: <56670CE3.2040108@atendesoftware.pl> 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" Some shells like dash do not support the syntax {}: {mk,scripts}: No such file or directory Reported-by: Thiago Martins Reported-by: Piotr Bartosiewicz Signed-off-by: Thomas Monjalon --- mk/rte.sdkinstall.mk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mk/rte.sdkinstall.mk b/mk/rte.sdkinstall.mk index c611d45..c159bf7 100644 --- a/mk/rte.sdkinstall.mk +++ b/mk/rte.sdkinstall.mk @@ -139,7 +139,8 @@ install-sdk: tar -xf - -C $(DESTDIR)$(includedir) --strip-components=1 \ --keep-newer-files --warning=no-ignore-newer $(Q)$(call rte_mkdir, $(DESTDIR)$(sdkdir)) - $(Q)cp -a $(RTE_SDK)/{mk,scripts} $(DESTDIR)$(sdkdir) + $(Q)cp -a $(RTE_SDK)/mk $(DESTDIR)$(sdkdir) + $(Q)cp -a $(RTE_SDK)/scripts $(DESTDIR)$(sdkdir) $(Q)$(call rte_mkdir, $(DESTDIR)$(targetdir)) $(Q)cp -a $O/.config $(DESTDIR)$(targetdir) $(Q)$(call rte_symlink, $(DESTDIR)$(includedir), $(DESTDIR)$(targetdir)/include) -- 2.5.2