Fix annoying precompiler limitation/bug in version sandbox logic.

This commit is contained in:
sawinglogz 2020-01-17 16:25:01 -05:00
parent 79ec192051
commit 62b5ba3a60

View File

@ -46,7 +46,8 @@ 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.
@ -58,6 +59,7 @@ QString getPrereleaseSuffix()
// revision information. Just put it in an "-unreleased" sandbox.
suffix = "-unreleased";
#endif
#endif
#endif
}