Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2013-11-25 14:25:35 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2013-11-25 14:25:35 +0400
commit551f3eef7403ffcd8838e1034ec1770bf3d37b7d (patch)
tree3b79d4f130724611959fc6423ded8ec29773b6f5 /build_files/cmake
parentb2c1bb74b213db28a5c45f16813ca14ee985a9fe (diff)
Show hash from latest pushed commit in buildinfo
Before this hash of latest local commit was used, which is not so much useful since nobody can access that commit hash.
Diffstat (limited to 'build_files/cmake')
-rw-r--r--build_files/cmake/buildinfo.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_files/cmake/buildinfo.cmake b/build_files/cmake/buildinfo.cmake
index 2cc92df15e7..7fc052eb249 100644
--- a/build_files/cmake/buildinfo.cmake
+++ b/build_files/cmake/buildinfo.cmake
@@ -12,7 +12,7 @@ if(EXISTS ${SOURCE_DIR}/.git/)
# The FindSubversion.cmake module is part of the standard distribution
include(FindGit)
if(GIT_FOUND)
- execute_process(COMMAND git rev-parse --short HEAD
+ execute_process(COMMAND git rev-parse --short @{u}
WORKING_DIRECTORY ${SOURCE_DIR}
OUTPUT_VARIABLE MY_WC_HASH
OUTPUT_STRIP_TRAILING_WHITESPACE)