From 62b5ba3a6091bd4c4ff81c1273b4d906c3c80725 Mon Sep 17 00:00:00 2001 From: sawinglogz <3787776-sawinglogz@users.noreply.gitlab.com> Date: Fri, 17 Jan 2020 16:25:01 -0500 Subject: [PATCH] Fix annoying precompiler limitation/bug in version sandbox logic. --- oscar/version.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/oscar/version.cpp b/oscar/version.cpp index 11bd67d4..6bb69d20 100644 --- a/oscar/version.cpp +++ b/oscar/version.cpp @@ -46,17 +46,19 @@ QString getPrereleaseSuffix() // Otherwise it's a development build, which will be identified by its branch in most cases. #ifdef GIT_BRANCH suffix = "-" GIT_BRANCH; - #elif GIT_REVISION + #else + #ifdef GIT_REVISION // If we've checked out an older version, we're in a headless state and not on any branch. // If the older version was a previous testing release, it should be tagged, in which case // it's treated as a testing release above. // // Otherwise this is probably being used for regression testing an older build. suffix = "-" GIT_REVISION; - #else + #else // In theory someone might try to build a prerelease from a tarball, so we don't have any // revision information. Just put it in an "-unreleased" sandbox. suffix = "-unreleased"; + #endif #endif #endif }