diff options
| author | Jean-Sébastien Pédron <jean-sebastien@rabbitmq.com> | 2015-12-22 15:17:25 +0100 |
|---|---|---|
| committer | Jean-Sébastien Pédron <jean-sebastien@rabbitmq.com> | 2015-12-22 15:17:25 +0100 |
| commit | 3d478460a3d9a94160e89ee82b85eb15ec5102a1 (patch) | |
| tree | 1e19fe2851321fd28e8f1567cc2b1f39441da657 /packaging/generic-unix | |
| parent | 203fb23c10e4f0a4c9c87d0964ea3a275f57c266 (diff) | |
| download | rabbitmq-server-git-3d478460a3d9a94160e89ee82b85eb15ec5102a1.tar.gz | |
packaging: Always use xzcat(1) to decompress xz archiverabbitmq_v3_6_0
Do not rely on tar's behaviour. It was already done everywhere except in
those three places.
Diffstat (limited to 'packaging/generic-unix')
| -rw-r--r-- | packaging/generic-unix/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packaging/generic-unix/Makefile b/packaging/generic-unix/Makefile index bdaed9c540..66aeff9071 100644 --- a/packaging/generic-unix/Makefile +++ b/packaging/generic-unix/Makefile @@ -25,7 +25,7 @@ all: dist @: dist: - tar -Jxf $(SOURCE_DIST_FILE) + xzcat $(SOURCE_DIST_FILE) | tar -xf - # web-manpages are not used by generic-unix but by `make release` in the. # Umbrella. Those manpages are copied to www.rabbitmq.com |
