diff options
author | chriseth <chris@ethereum.org> | 2016-09-09 17:03:01 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-09 17:03:01 +0800 |
commit | ec5aa4449064ef4c5e40729453b7589920defff5 (patch) | |
tree | c46e77aa3841b2704273d41a1fc8b205af20b0fa | |
parent | fb86d90e080b0fbbcf7b7f328352f9794802c8c4 (diff) | |
parent | 4bc0a2d00c5e524f5da6438d05c994004a0ce93e (diff) | |
download | dexon-solidity-ec5aa4449064ef4c5e40729453b7589920defff5.tar dexon-solidity-ec5aa4449064ef4c5e40729453b7589920defff5.tar.gz dexon-solidity-ec5aa4449064ef4c5e40729453b7589920defff5.tar.bz2 dexon-solidity-ec5aa4449064ef4c5e40729453b7589920defff5.tar.lz dexon-solidity-ec5aa4449064ef4c5e40729453b7589920defff5.tar.xz dexon-solidity-ec5aa4449064ef4c5e40729453b7589920defff5.tar.zst dexon-solidity-ec5aa4449064ef4c5e40729453b7589920defff5.zip |
Merge pull request #1068 from ethereum/modfix
Suffix the "mod" version modifier using a dot.
-rw-r--r-- | cmake/scripts/buildinfo.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/scripts/buildinfo.cmake b/cmake/scripts/buildinfo.cmake index 963c74e4..e2f8cb3e 100644 --- a/cmake/scripts/buildinfo.cmake +++ b/cmake/scripts/buildinfo.cmake @@ -48,7 +48,7 @@ if (SOL_COMMIT_HASH) endif() if (SOL_COMMIT_HASH AND SOL_LOCAL_CHANGES) - set(SOL_COMMIT_HASH "${SOL_COMMIT_HASH}-mod") + set(SOL_COMMIT_HASH "${SOL_COMMIT_HASH}.mod") endif() if (NOT SOL_COMMIT_HASH) |