[Commits] [SCM] claws branch, master, updated. 3.9.0-209-g83ee9ae
miras at claws-mail.org
miras at claws-mail.org
Fri May 3 02:36:53 CEST 2013
The branch master of project "claws" (Claws Mail) has been updated
via 83ee9ae54bfe227cff2dc17204224d2e845f8a06 (commit)
from fb56fc5bfc914dadadacf60b92068f1b25601d78 (commit)
- Log -----------------------------------------------------------------
commit 83ee9ae54bfe227cff2dc17204224d2e845f8a06
Author: Michael Rasmussen <mir at datanom.net>
Date: Fri May 3 02:35:28 2013 +0200
Fix test for git to allow tarball builds.
diff --git a/configure.ac b/configure.ac
index ab78d58..0f433b8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -12,13 +12,13 @@ BINARY_AGE=0
EXTRA_RELEASE=
EXTRA_GTK2_VERSION=
-AC_CHECK_PROG([GIT], [git], [yes], [no], [$PATH])
-if test \( "$GIT" = "no" \); then
- AC_MSG_ERROR([*** git not found. See http://git-scm.com/])
-fi
-
if test \( -d .git \); then
- GIT_VERSION=`git describe --abbrev=6 --dirty --always`
+ AC_CHECK_PROG([GIT], [git], [yes], [no], [$PATH])
+ if test \( "$GIT" = "no" \); then
+ AC_MSG_ERROR([*** git not found. See http://git-scm.com/])
+ else
+ GIT_VERSION=`git describe --abbrev=6 --dirty --always`
+ fi
else
GIT_VERSION=`sh -c '. ./version'`
fi
-----------------------------------------------------------------------
Summary of changes:
configure.ac | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
hooks/post-receive
--
Claws Mail
More information about the Commits
mailing list