Skip to content

Commit

Permalink
Merge pull request #133 from fluffypony/master
Browse files Browse the repository at this point in the history
fixed cmake variable matching
  • Loading branch information
fluffypony committed Sep 12, 2014
2 parents e7c52d9 + 570b90e commit 63f60b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/version.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ else()
set(VERSIONTAG "${COMMIT}")
else()
message(STATUS "The most recent tag was at ${TAGGEDCOMMIT}")
if(COMMIT MATCHES TAGGEDCOMMIT)
if(${COMMIT} MATCHES ${TAGGEDCOMMIT})
message(STATUS "You are building a tagged release")
set(VERSIONTAG "release")
else()
Expand Down

0 comments on commit 63f60b1

Please sign in to comment.