diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2017-03-17 13:54:15 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2017-03-17 13:54:15 +0100 |
commit | b2ea38cdacb044b8f90753062e8dfb75a244afb0 (patch) | |
tree | 60b189160845947b10f4643619718a042b07e027 | |
parent | c326cf4b45539134e19faf4eb26d8c3da51e0841 (diff) |
cmake/git: don't list that checkout is dirty
Given that i18n stuff regens all the time it's annoying.
-rw-r--r-- | cmake/opentrack-version.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/opentrack-version.cmake b/cmake/opentrack-version.cmake index 42a74b51..d5eba541 100644 --- a/cmake/opentrack-version.cmake +++ b/cmake/opentrack-version.cmake @@ -2,7 +2,7 @@ include(GetGitRevisionDescription) find_package(Git QUIET) if(GIT_FOUND) - git_describe(OPENTRACK_COMMIT --tags --always --dirty) + git_describe(OPENTRACK_COMMIT --tags --always) endif() unset(_build_type) |