Repository: drill Updated Branches: refs/heads/master 2d9f9abb4 -> f07f32856
DRILL-4652: Drill native client - fix compile issue when the latest git commit description has a period or quotation mark in it This closes #494 Project: http://git-wip-us.apache.org/repos/asf/drill/repo Commit: http://git-wip-us.apache.org/repos/asf/drill/commit/f07f3285 Tree: http://git-wip-us.apache.org/repos/asf/drill/tree/f07f3285 Diff: http://git-wip-us.apache.org/repos/asf/drill/diff/f07f3285 Branch: refs/heads/master Commit: f07f328562f4f30d691650f0a17d29cae227d138 Parents: 2d9f9ab Author: Patrick Wong <[email protected]> Authored: Tue May 3 15:19:26 2016 -0700 Committer: Parth Chandra <[email protected]> Committed: Tue May 3 15:45:26 2016 -0700 ---------------------------------------------------------------------- contrib/native/client/CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/drill/blob/f07f3285/contrib/native/client/CMakeLists.txt ---------------------------------------------------------------------- diff --git a/contrib/native/client/CMakeLists.txt b/contrib/native/client/CMakeLists.txt index b22af42..b53cb0a 100644 --- a/contrib/native/client/CMakeLists.txt +++ b/contrib/native/client/CMakeLists.txt @@ -33,6 +33,9 @@ execute_process( OUTPUT_VARIABLE GIT_COMMIT_PROP OUTPUT_STRIP_TRAILING_WHITESPACE ) +STRING(REPLACE . " " GIT_COMMIT_PROP "${GIT_COMMIT_PROP}") +STRING(REPLACE \" "" GIT_COMMIT_PROP "${GIT_COMMIT_PROP}") +set(GIT_COMMIT_PROP "\"${GIT_COMMIT_PROP}\"") add_definitions("-DGIT_COMMIT_PROP=${GIT_COMMIT_PROP}")
