|
|
|
|
|
|
|
|
|
|
xen-devel
[Xen-devel] [PATCH 9/11] build: Use --bzip2 with tar instead of -j
# HG changeset patch
# User Horms <horms@xxxxxxxxxxxx>
# Node ID fff0293d01ce01a625cc05c67a52b0b18fe4114c
# Parent aec720c1347b14b6d4ab1b3838fdde0cc8dd9600
build: Use --bzip2 with tar instead of -j
Ok, this is a bit nitpicky. But I noticed in the GNU tar man page
that it recommends using --bzip2 instead of -j, originally
the -j option was -I
Signed-Off-By: Horms <horms@xxxxxxxxxxxx>
diff -r aec720c1347b -r fff0293d01ce buildconfigs/Rules.mk
--- a/buildconfigs/Rules.mk Thu Mar 30 15:13:56 2006 +0900
+++ b/buildconfigs/Rules.mk Thu Mar 30 15:13:58 2006 +0900
@@ -44,7 +44,7 @@ pristine-%/.valid-pristine: %.tar.bz2
pristine-%/.valid-pristine: %.tar.bz2
rm -rf tmp-pristine-$* $(@D)
mkdir -p tmp-pristine-$*
- tar -C tmp-pristine-$* -jxf $<
+ tar -C tmp-pristine-$* --bzip2 -xf $<
-@rm -f tmp-pristine-$*/pax_global_header
mv tmp-pristine-$*/* $(@D)
@rm -rf tmp-pristine-$*
diff -r aec720c1347b -r fff0293d01ce tools/xenstore/Makefile
--- a/tools/xenstore/Makefile Thu Mar 30 15:13:56 2006 +0900
+++ b/tools/xenstore/Makefile Thu Mar 30 15:13:58 2006 +0900
@@ -153,7 +153,7 @@ TAGS:
.PHONY: tarball
tarball: clean
- cd .. && tar -c -j -v -h -f xenstore.tar.bz2 xenstore/
+ cd .. && tar -c --bzip2 -v -h -f xenstore.tar.bz2 xenstore/
.PHONY: install
install: all
--
Horms
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
<Prev in Thread] |
Current Thread |
[Next in Thread>
|
- [Xen-devel] [PATCH 0/11] libxc: various build cleanups, Horms
- [Xen-devel] [PATCH 1/11] build: Remove unused netbsd build fragments, Horms
- [Xen-devel] [PATCH 2/11] build: Remove iptables and python loging helper targets, Horms
- [Xen-devel] [PATCH 3/11] build: Make sure that DESTDIR is set, Horms
- [Xen-devel] [PATCH 4/11] build: Clean up use of .PHONY, Horms
- [Xen-devel] [PATCH 5/11] build: clean up output of make help a little bit, Horms
- [Xen-devel] [PATCH 6/11] build: Document the use of XEN_PYTHON_NATIVE_INSTALL, Horms
- [Xen-devel] [PATCH 7/11] build: clean up kclean and distclean for kernel, Horms
- [Xen-devel] [PATCH 8/11] build: Clean pygrub's a.out, Horms
- [Xen-devel] [PATCH 9/11] build: Use --bzip2 with tar instead of -j,
Horms <=
- [Xen-devel] [PATCH 10/11] build: make linux download more flexable, Horms
- [Xen-devel] [PATCH 11/11] build: Don't assume that mkbuildtree is executable, Horms
|
|
|
|
|