mirror of
https://github.com/munin-monitoring/muninlite.git
synced 2025-01-03 11:42:10 +01:00
Makefile: create gzipped release archive
Previously it just looked like a tar.gz file, but it was a plain tar archive.
This commit is contained in:
parent
1b43f16454
commit
a0c555c2bd
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -64,7 +64,7 @@ clean-all: clean-node clean-dist
|
||||||
$(TGZ_FILE):
|
$(TGZ_FILE):
|
||||||
@echo "Building $@ ..."
|
@echo "Building $@ ..."
|
||||||
@mkdir -p "$(dir $(@))"
|
@mkdir -p "$(dir $(@))"
|
||||||
git archive --prefix=muninlite-$(VERSION)/ --format=tar --output "$@.tmp" HEAD
|
git archive --prefix=muninlite-$(VERSION)/ --format=tar.gz --output "$@.tmp" HEAD
|
||||||
mv "$@.tmp" "$@"
|
mv "$@.tmp" "$@"
|
||||||
|
|
||||||
$(TGZ_FILE_SIGNATURE): $(TGZ_FILE)
|
$(TGZ_FILE_SIGNATURE): $(TGZ_FILE)
|
||||||
|
|
Loading…
Reference in a new issue