summaryrefslogtreecommitdiff
path: root/src/common/scm_rev.cpp.in
diff options
context:
space:
mode:
authorGravatar bunnei2014-04-23 19:13:00 -0700
committerGravatar bunnei2014-04-23 19:13:00 -0700
commit80a040ac772132a8d8e7385c0261f545adc88aee (patch)
tree682a57288e9f1fdde230b075e5ab354adc1b2c07 /src/common/scm_rev.cpp.in
parentupdated windows scm_rev code to use new style (diff)
downloadyuzu-80a040ac772132a8d8e7385c0261f545adc88aee.tar.gz
yuzu-80a040ac772132a8d8e7385c0261f545adc88aee.tar.xz
yuzu-80a040ac772132a8d8e7385c0261f545adc88aee.zip
fixes to scm_rev generation to make it conistent with windows build
Diffstat (limited to 'src/common/scm_rev.cpp.in')
-rw-r--r--src/common/scm_rev.cpp.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/scm_rev.cpp.in b/src/common/scm_rev.cpp.in
index 9e2bcfdd8..512c5bd4c 100644
--- a/src/common/scm_rev.cpp.in
+++ b/src/common/scm_rev.cpp.in
@@ -5,13 +5,13 @@
5#include "common/scm_rev.h" 5#include "common/scm_rev.h"
6 6
7#define GIT_REV "@GIT_REV@" 7#define GIT_REV "@GIT_REV@"
8#define GIT_REF_SPEC "@GIT_REF_SPEC@" 8#define GIT_BRANCH "@GIT_BRANCH@"
9#define GIT_DESC "@GIT_DESC@" 9#define GIT_DESC "@GIT_DESC@"
10 10
11namespace Common { 11namespace Common {
12 12
13const char g_scm_rev[] = GIT_REV; 13const char g_scm_rev[] = GIT_REV;
14const char g_scm_ref_spec[] = GIT_REF_SPEC; 14const char g_scm_ref_spec[] = GIT_BRANCH;
15const char g_scm_desc[] = GIT_DESC; 15const char g_scm_desc[] = GIT_DESC;
16 16
17} // namespace 17} // namespace