From: Matthias Maier Date: Mon, 19 Jan 2015 23:42:34 +0000 (+0100) Subject: CMake: Export a string literal in revision.h X-Git-Tag: v8.3.0-rc1~524^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f2bd2bb3f10a86477a3db628e3b70b494d426e38;p=dealii.git CMake: Export a string literal in revision.h --- diff --git a/include/deal.II/base/revision.h.in b/include/deal.II/base/revision.h.in index 72104d8e34..20614483ed 100644 --- a/include/deal.II/base/revision.h.in +++ b/include/deal.II/base/revision.h.in @@ -19,16 +19,16 @@ /** * Name of the local git branch of the source directory. */ -#define DEAL_II_GIT_BRANCH @DEAL_II_GIT_BRANCH@ +#define DEAL_II_GIT_BRANCH "@DEAL_II_GIT_BRANCH@" /** * Full sha1 revision of the current git HEAD. */ -#define DEAL_II_GIT_REVISION @DEAL_II_GIT_REVISION@ +#define DEAL_II_GIT_REVISION "@DEAL_II_GIT_REVISION@" /** * Short sha1 revision of the current git HEAD. */ -#define DEAL_II_GIT_SHORTREV @DEAL_II_GIT_SHORTREV@ +#define DEAL_II_GIT_SHORTREV "@DEAL_II_GIT_SHORTREV@" #endif