File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ all: package
32
32
33
33
package : clean
34
34
cp -a $(SOURCE_DIST_FILE ) $(DEBIAN_ORIG_TARBALL )
35
- tar -Jxf $(DEBIAN_ORIG_TARBALL )
35
+ xzcat $(DEBIAN_ORIG_TARBALL ) | tar -xf -
36
36
cp -a debian $(UNPACKED_DIR )
37
37
rsync -a \
38
38
--exclude ' .sw?' --exclude ' .*.sw?' \
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ all: dist
25
25
@:
26
26
27
27
dist :
28
- tar -Jxf $(SOURCE_DIST_FILE )
28
+ xzcat $(SOURCE_DIST_FILE ) | tar -xf -
29
29
30
30
# web-manpages are not used by generic-unix but by `make release` in the.
31
31
# Umbrella. Those manpages are copied to www.rabbitmq.com
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ all: dist
25
25
@:
26
26
27
27
dist :
28
- tar -Jxf $(SOURCE_DIST_FILE )
28
+ xzcat $(SOURCE_DIST_FILE ) | tar -xf -
29
29
$(MAKE ) -C $(SOURCE_DIR ) install-windows \
30
30
DESTDIR=$(abspath $(TARGET_DIR ) ) \
31
31
WINDOWS_PREFIX=
You can’t perform that action at this time.
0 commit comments