diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2010-10-23 17:25:52 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2010-10-23 17:25:52 +0300 |
commit | e45929260cd902036efd40c5610a8d0a50d5712b (patch) | |
tree | 1d1a4af40ecb2e9e5a86437c943615d1218698b7 | |
parent | Add NEWS for 5.0.0. (diff) | |
download | xz-e45929260cd902036efd40c5610a8d0a50d5712b.tar.xz |
Build: Fix mydist rule when .git doesn't exist.larhzu/v5.0.0
-rw-r--r-- | Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 809197e8..91c7c085 100644 --- a/Makefile.am +++ b/Makefile.am @@ -79,6 +79,7 @@ dist-hook: # This works with GNU tar and gives cleaner package than normal 'make dist'. mydist: + VERSION=$(VERSION); \ 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; \ |