diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2017-03-12 01:09:27 +0100 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2017-03-12 01:09:27 +0100 |
commit | 92f58d6647eeb1874c7f14af7699b5479b097ce8 (patch) | |
tree | b93b0aa5936a55105452d94d54968f5ced6cd0d0 /Makefile.am | |
parent | build-sys: make more targets .PHONY (diff) | |
download | systemd-92f58d6647eeb1874c7f14af7699b5479b097ce8.tar.xz systemd-92f58d6647eeb1874c7f14af7699b5479b097ce8.zip |
build-sys: simplify git tar invocation
git is nowadays nice enough to compress based on the output file suffix,
let's make use of that.
Diffstat (limited to '')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index b415004193..407efab45e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -6632,7 +6632,7 @@ git-tag: .PHONY: git-tar git-tar: - git archive --format=tar --prefix=systemd-$(VERSION)/ HEAD | gzip > systemd-$(VERSION).tar.gz + git archive -o systemd-$(VERSION).tar.gz --prefix=systemd-$(VERSION)/ HEAD www_target = www.freedesktop.org:/srv/www.freedesktop.org/www/software/systemd |