diff options
| author | Drew DeVault <sir@cmpwn.com> | 2017-04-26 10:18:03 -0400 |
|---|---|---|
| committer | Drew DeVault <sir@cmpwn.com> | 2017-05-01 10:24:45 -0400 |
| commit | 06446b611a521b78c65a8d584f2985f455e7a8b9 (patch) | |
| tree | e824215c8066a9ed3072f73edc5afd5ce3d7ee80 /swaylock | |
| parent | 16a3bf1e4a7093e29abcbe8fb6253708c32a2b6a (diff) | |
Merge pull request #1194 from snoack/version
Add -DVERSION flag for release version numbers
Diffstat (limited to 'swaylock')
| -rw-r--r-- | swaylock/main.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/swaylock/main.c b/swaylock/main.c index 9b33aab9..47592409 100644 --- a/swaylock/main.c +++ b/swaylock/main.c @@ -451,11 +451,7 @@ int main(int argc, char **argv) { socket_path = optarg; break; case 'v': -#if defined SWAY_GIT_VERSION && defined SWAY_GIT_BRANCH && defined SWAY_VERSION_DATE - fprintf(stdout, "swaylock version %s (%s, branch \"%s\")\n", SWAY_GIT_VERSION, SWAY_VERSION_DATE, SWAY_GIT_BRANCH); -#else - fprintf(stdout, "version not detected\n"); -#endif + fprintf(stdout, "swaylock version " SWAY_VERSION "\n"); exit(EXIT_SUCCESS); break; case 'u': |
