diff options
| author | 2014-04-23 19:13:00 -0700 | |
|---|---|---|
| committer | 2014-04-23 19:13:00 -0700 | |
| commit | 80a040ac772132a8d8e7385c0261f545adc88aee (patch) | |
| tree | 682a57288e9f1fdde230b075e5ab354adc1b2c07 /src/common/scm_rev.cpp.in | |
| parent | updated windows scm_rev code to use new style (diff) | |
| download | yuzu-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.in | 4 |
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 | ||
| 11 | namespace Common { | 11 | namespace Common { |
| 12 | 12 | ||
| 13 | const char g_scm_rev[] = GIT_REV; | 13 | const char g_scm_rev[] = GIT_REV; |
| 14 | const char g_scm_ref_spec[] = GIT_REF_SPEC; | 14 | const char g_scm_ref_spec[] = GIT_BRANCH; |
| 15 | const char g_scm_desc[] = GIT_DESC; | 15 | const char g_scm_desc[] = GIT_DESC; |
| 16 | 16 | ||
| 17 | } // namespace | 17 | } // namespace |