From: Lasse Collin Date: Sat, 23 Oct 2010 14:25:52 +0000 (+0300) Subject: Build: Fix mydist rule when .git doesn't exist. X-Git-Tag: upstream/5.1.3~211 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e45929260cd902036efd40c5610a8d0a50d5712b;p=platform%2Fupstream%2Fxz.git Build: Fix mydist rule when .git doesn't exist. --- diff --git a/Makefile.am b/Makefile.am index 809197e..91c7c08 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; \