mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
Put the git commit to the filename in mydist rule.
This commit is contained in:
parent
d8b41eedce
commit
3e49c8acb0
1 changed files with 5 additions and 1 deletions
|
@ -77,5 +77,9 @@ dist-hook:
|
||||||
|
|
||||||
# This works with GNU tar and gives cleaner package than normal 'make dist'.
|
# This works with GNU tar and gives cleaner package than normal 'make dist'.
|
||||||
mydist:
|
mydist:
|
||||||
|
if test -d "$(srcdir)/.git" && type git > /dev/null 2>&1; then \
|
||||||
|
SNAPSHOT=`cd "$(srcdir)" && git describe --abbrev=4 | cut -b2-`; \
|
||||||
|
test -n "$$SNAPSHOT" && VERSION=$$SNAPSHOT; \
|
||||||
|
fi; \
|
||||||
TAR_OPTIONS='--owner=0 --group=0 --numeric-owner --mode=u+rw,go+r-w' \
|
TAR_OPTIONS='--owner=0 --group=0 --numeric-owner --mode=u+rw,go+r-w' \
|
||||||
$(MAKE) dist-gzip
|
$(MAKE) VERSION="$$VERSION" dist-gzip
|
||||||
|
|
Loading…
Reference in a new issue