From ddcc9f4a0aaafd9806c1b368d9dd8b37ffb5c69b Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Mon, 7 Sep 2026 16:34:59 +0500 Subject: [PATCH] build-type-cfg.cmd: drop unused `POSTFIX_` variables `POSTFIX_D` unused since ICU was eliminated as a dependency (0b2bd5d), other two were never used. --- win/build-type-cfg.cmd | 8 -------- 1 file changed, 8 deletions(-) diff --git a/win/build-type-cfg.cmd b/win/build-type-cfg.cmd index 773c3f300b..e49f4b9758 100644 --- a/win/build-type-cfg.cmd +++ b/win/build-type-cfg.cmd @@ -44,17 +44,9 @@ IF NOT !BUILD_CFG!==%BUILD_CFG_RELWITHDEBINFO% IF NOT !BUILD_CFG!==%BUILD_CFG_DE :: DEBUG_OR_RELEASE and DEBUG_OR_RELEASE_LOWERCASE are "Debug" and "debug" for Debug build and "Release" and :: "release" for all of the Release variants. -:: POSTFIX_D, POSTFIX_UNDERSCORE_D and POSTFIX_UNDERSCORE_DEBUG are helpers for performing file copies and -:: checking for existence of files. In release build these variables are empty. set DEBUG_OR_RELEASE=Release set DEBUG_OR_RELEASE_LOWERCASE=release -set POSTFIX_D= -set POSTFIX_UNDERSCORE_D= -set POSTFIX_UNDERSCORE_DEBUG= IF %BUILD_CFG%==Debug ( set DEBUG_OR_RELEASE=Debug set DEBUG_OR_RELEASE_LOWERCASE=debug - set POSTFIX_D=d - set POSTFIX_UNDERSCORE_D=_d - set POSTFIX_UNDERSCORE_DEBUG=_debug )