diff options
author | Andre Heinecke <[email protected]> | 2019-12-19 12:13:30 +0000 |
---|---|---|
committer | Andre Heinecke <[email protected]> | 2019-12-19 12:13:30 +0000 |
commit | 28403cb5fe4eea2ac1ad514fdfcfa282e795c69f (patch) | |
tree | 6d88eeb99e78dfbe7175ac3bd55df92b472804c3 | |
parent | speedo: Improve and document wixlib build (diff) | |
download | gnupg-28403cb5fe4eea2ac1ad514fdfcfa282e795c69f.tar.gz gnupg-28403cb5fe4eea2ac1ad514fdfcfa282e795c69f.zip |
speedo: Use multithreaded xz for w32 source
* build-aux/speedo.mk (dist-source): Add -T0 parameter to xz.
-rw-r--r-- | build-aux/speedo.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build-aux/speedo.mk b/build-aux/speedo.mk index 5393781e2..332cd02ff 100644 --- a/build-aux/speedo.mk +++ b/build-aux/speedo.mk @@ -1240,7 +1240,7 @@ dist-source: installer --transform='s,^,$(INST_NAME)-$(INST_VERSION)/,' \ PLAY/stamps/stamp-*-00-unpack PLAY/src swdb.lst swdb.lst.sig ;\ [ -f "$$tarname".xz ] && rm "$$tarname".xz;\ - xz "$$tarname" ;\ + xz -T0 "$$tarname" ;\ ) |