diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-04-26 10:18:03 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-26 10:18:03 -0400 |
commit | 3c1fc00f12e2777f6349a5d671b8d66c5997eb2b (patch) | |
tree | 5bcca08aad4e65d288abf218b50172a3137d2d71 /swaygrab/main.c | |
parent | 586eca0e4cd9481cabdd1cedef53145a0d07bc72 (diff) | |
parent | 173b3385675b24fb7a55f2d212e2958970f6e6d3 (diff) | |
download | sway-3c1fc00f12e2777f6349a5d671b8d66c5997eb2b.tar.xz |
Merge pull request #1194 from snoack/version
Add -DVERSION flag for release version numbers
Diffstat (limited to 'swaygrab/main.c')
-rw-r--r-- | swaygrab/main.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/swaygrab/main.c b/swaygrab/main.c index 3b8c5651..f901d318 100644 --- a/swaygrab/main.c +++ b/swaygrab/main.c @@ -201,11 +201,7 @@ int main(int argc, char **argv) { framerate = atoi(optarg); break; case 'v': -#if defined SWAY_GIT_VERSION && defined SWAY_GIT_BRANCH && defined SWAY_VERSION_DATE - fprintf(stdout, "sway 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, "sway version " SWAY_VERSION "\n"); exit(EXIT_SUCCESS); break; default: |