diff options
author | Joerg Bornemann <joerg.bornemann@qt.io> | 2020-01-23 10:01:14 +0100 |
---|---|---|
committer | Joerg Bornemann <joerg.bornemann@qt.io> | 2020-01-23 13:37:32 +0100 |
commit | 0ab53fbdda2fd7f24f45dcd52fbd195e282554da (patch) | |
tree | 19ee5d50a6417a06311bf9def9518ace0d62cbb5 | |
parent | 1749f9184b97e03753175c92af4a82d4ce577b40 (diff) |
Fix qtPlatformTargetSuffix for darwin platformsv5.14.1
Commit 1749f918 changed a "mac" scope to a "macos" scope (thanks to the enormously helpful hint from in^Wsanity bot). Instead it should use "darwin", because that's what is equivalent to "mac". Fixes: QTBUG-81599 Change-Id: I0fd82f984945836a5b7b1bea5ed2117a2f676947 Reviewed-by: Kai Koehne <kai.koehne@qt.io>
-rw-r--r-- | mkspecs/features/qt_functions.prf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mkspecs/features/qt_functions.prf b/mkspecs/features/qt_functions.prf index 32877dda89e..7777e615bda 100644 --- a/mkspecs/features/qt_functions.prf +++ b/mkspecs/features/qt_functions.prf @@ -13,7 +13,7 @@ defineReplace(qtPlatformTargetSuffix) { } } } - macos { + darwin { CONFIG(debug, debug|release) { !debug_and_release|build_pass: \ return($${suffix}_debug) |