From d3dd0e3c6fa6c1ce5e5d3ef5d7d4e51e2dc54b5c Mon Sep 17 00:00:00 2001 From: Martin Milata Date: Fri, 17 Feb 2023 18:06:48 +0100 Subject: [PATCH] build(core): fix filename when BITCOIN_ONLY is unset [no changelog] --- core/SConscript.firmware | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/SConscript.firmware b/core/SConscript.firmware index fff4f6b30..5bbaa45d7 100644 --- a/core/SConscript.firmware +++ b/core/SConscript.firmware @@ -818,7 +818,7 @@ if CMAKELISTS != 0: env.Depends(program_elf, rust) BINARY_NAME = f"build/firmware/firmware-{tools.get_model_identifier(TREZOR_MODEL)}" -if BITCOIN_ONLY != 0: +if not EVERYTHING: BINARY_NAME += "-btconly" BINARY_NAME += "-" + tools.get_version('embed/firmware/version.h') BINARY_NAME += "-" + tools.get_git_revision_short_hash()