Skip to content

Commit

Permalink
fixed cmake variable matching
Browse files Browse the repository at this point in the history
  • Loading branch information
fluffypony committed Sep 12, 2014
1 parent e7c52d9 commit 570b90e
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 570b90e

Please sign in to comment.