Imported Upstream version 16.07-rc1
[deb_dpdk.git] / debian / patches / ubuntu-backport-41-fix-install-tar-1.29.patch
1 Description: backport of dpdk 16.07 fix for tar >=1.29
2
3 This is a backport of:
4 - dd9ae4c7 mk: fix install with tar 1.29
5
6 Forwarded: yes (in DPDK 16.07)
7 Author: Christian Ehrhardt <christian.ehrhardt@canonical.com>
8 Last-Update: 2016-06-14
9
10 Index: dpdk/mk/rte.sdkinstall.mk
11 ===================================================================
12 --- dpdk.orig/mk/rte.sdkinstall.mk
13 +++ dpdk/mk/rte.sdkinstall.mk
14 @@ -116,9 +116,9 @@ install-runtime:
15         $(Q)$(call rte_mkdir, $(DESTDIR)$(libdir))
16         $(Q)cp -a    $O/lib/* $(DESTDIR)$(libdir)
17         $(Q)$(call rte_mkdir, $(DESTDIR)$(bindir))
18 -       $(Q)tar -cf -      -C $O app  --exclude 'app/*.map' \
19 +       $(Q)tar -cf -      -C $O --exclude 'app/*.map' \
20                 --exclude 'app/cmdline*' --exclude app/test \
21 -               --exclude app/testacl --exclude app/testpipeline | \
22 +               --exclude app/testacl --exclude app/testpipeline app | \
23             tar -xf -      -C $(DESTDIR)$(bindir) --strip-components=1 \
24                 --keep-newer-files --warning=no-ignore-newer
25         $(Q)$(call rte_mkdir,      $(DESTDIR)$(datadir))