From 79d660d35d30f60ccd41474cff20f00f215f767a Mon Sep 17 00:00:00 2001 From: Jason Evans Date: Fri, 17 Sep 2010 17:38:24 -0700 Subject: [PATCH] Store full git GID in VERSION. --- jemalloc/configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jemalloc/configure.ac b/jemalloc/configure.ac index 21f502c6..b0d470a0 100644 --- a/jemalloc/configure.ac +++ b/jemalloc/configure.ac @@ -637,7 +637,7 @@ dnl dnl Set VERSION if source directory has an embedded git repository. if test -d "${srcroot}../.git" ; then - git describe --long > ${srcroot}VERSION + git describe --long --abbrev=40 > ${srcroot}VERSION fi jemalloc_version=`cat ${srcroot}VERSION` jemalloc_version_major=`echo ${jemalloc_version} | tr ".g-" " " | awk '{print [$]1}'`