From 92f58d6647eeb1874c7f14af7699b5479b097ce8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Sat, 11 Mar 2017 19:09:27 -0500 Subject: [PATCH] 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. --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index b4150041936..407efab45e4 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 -- 2.47.3