From 66fcd27e2b67ee17600e350ff4688d0d98fce726 Mon Sep 17 00:00:00 2001 From: M1nd3r Date: Thu, 17 Oct 2024 13:48:32 +0200 Subject: [PATCH] fix(core): enable THP in frozen bitcoin_only builds [no changelog] --- core/SConscript.unix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/core/SConscript.unix b/core/SConscript.unix index a206f65899..916f6fa153 100644 --- a/core/SConscript.unix +++ b/core/SConscript.unix @@ -691,6 +691,9 @@ if FROZEN: ]) ) + if THP: + SOURCE_PY.extend(Glob(SOURCE_PY_DIR + 'apps/thp/*.py')) + if EVERYTHING: SOURCE_PY.extend(Glob(SOURCE_PY_DIR + 'apps/binance/*.py')) SOURCE_PY.extend(Glob(SOURCE_PY_DIR + 'trezor/enums/Binance*.py')) @@ -732,8 +735,6 @@ if FROZEN: SOURCE_PY.extend(Glob(SOURCE_PY_DIR + 'apps/tezos/*.py')) SOURCE_PY.extend(Glob(SOURCE_PY_DIR + 'trezor/enums/Tezos*.py')) - if THP: - SOURCE_PY.extend(Glob(SOURCE_PY_DIR + 'apps/thp/*.py')) SOURCE_PY.extend(Glob(SOURCE_PY_DIR + 'apps/zcash/*.py'))