* [dpdk-dev] [PATCH] mk: fix FreeBSD 'make install'
@ 2016-08-29 9:11 Ferruh Yigit
2016-09-22 21:24 ` Thomas Monjalon
0 siblings, 1 reply; 2+ messages in thread
From: Ferruh Yigit @ 2016-08-29 9:11 UTC (permalink / raw)
To: dev; +Cc: Thomas Monjalon, Daniel Verkamp
FreeBSD make install fails because of unsupported tar option:
tar: Option --warning=no-ignore-newer is not supported
Issue fixed by removing unsupported tar option.
Fixes: 6b62a72a70d0 ("mk: install a standard cutomizable tree")
Fixes: e4552b9cc603 ("mk: install doc")
Reported-by: Daniel Verkamp <daniel.verkamp@intel.com>
Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
---
mk/rte.sdkinstall.mk | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/mk/rte.sdkinstall.mk b/mk/rte.sdkinstall.mk
index 5217063..f3e59db 100644
--- a/mk/rte.sdkinstall.mk
+++ b/mk/rte.sdkinstall.mk
@@ -121,7 +121,7 @@ install-runtime:
--exclude 'app/cmdline*' --exclude app/test \
--exclude app/testacl --exclude app/testpipeline app | \
tar -xf - -C $(DESTDIR)$(bindir) --strip-components=1 \
- --keep-newer-files --warning=no-ignore-newer
+ --keep-newer-files
$(Q)$(call rte_mkdir, $(DESTDIR)$(datadir))
$(Q)cp -a $(RTE_SDK)/tools $(DESTDIR)$(datadir)
$(Q)$(call rte_symlink, $(DESTDIR)$(datadir)/tools/dpdk-setup.sh, \
@@ -144,7 +144,7 @@ install-sdk:
$(Q)$(call rte_mkdir, $(DESTDIR)$(includedir))
$(Q)tar -chf - -C $O include | \
tar -xf - -C $(DESTDIR)$(includedir) --strip-components=1 \
- --keep-newer-files --warning=no-ignore-newer
+ --keep-newer-files
$(Q)$(call rte_mkdir, $(DESTDIR)$(sdkdir))
$(Q)cp -a $(RTE_SDK)/mk $(DESTDIR)$(sdkdir)
$(Q)cp -a $(RTE_SDK)/scripts $(DESTDIR)$(sdkdir)
@@ -159,7 +159,7 @@ ifneq ($(wildcard $O/doc),)
$(Q)$(call rte_mkdir, $(DESTDIR)$(docdir))
$(Q)tar -cf - -C $O/doc html --exclude 'html/guides/.*' | \
tar -xf - -C $(DESTDIR)$(docdir) --strip-components=1 \
- --keep-newer-files --warning=no-ignore-newer
+ --keep-newer-files
endif
ifneq ($(wildcard $O/doc/*/*/*pdf),)
$(Q)$(call rte_mkdir, $(DESTDIR)$(docdir)/guides)
--
2.7.4
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [dpdk-dev] [PATCH] mk: fix FreeBSD 'make install'
2016-08-29 9:11 [dpdk-dev] [PATCH] mk: fix FreeBSD 'make install' Ferruh Yigit
@ 2016-09-22 21:24 ` Thomas Monjalon
0 siblings, 0 replies; 2+ messages in thread
From: Thomas Monjalon @ 2016-09-22 21:24 UTC (permalink / raw)
To: Ferruh Yigit; +Cc: dev, Daniel Verkamp
2016-08-29 10:11, Ferruh Yigit:
> FreeBSD make install fails because of unsupported tar option:
> tar: Option --warning=no-ignore-newer is not supported
>
> Issue fixed by removing unsupported tar option.
>
> Fixes: 6b62a72a70d0 ("mk: install a standard cutomizable tree")
> Fixes: e4552b9cc603 ("mk: install doc")
>
> Reported-by: Daniel Verkamp <daniel.verkamp@intel.com>
> Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
Applied, thanks
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2016-09-22 21:24 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-08-29 9:11 [dpdk-dev] [PATCH] mk: fix FreeBSD 'make install' Ferruh Yigit
2016-09-22 21:24 ` Thomas Monjalon
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).