mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-12-23 23:08:14 +00:00
core: fix build on T1
file src/apps/base.py was added unconditionally breaking the T1 build
This commit is contained in:
parent
a6451dad46
commit
9a673db647
@ -493,7 +493,7 @@ if FROZEN:
|
||||
])
|
||||
)
|
||||
|
||||
SOURCE_PY.append(SOURCE_PY_DIR + 'apps/base.py')
|
||||
SOURCE_PY.extend(Glob(SOURCE_PY_DIR + 'apps/*.py'))
|
||||
SOURCE_PY.extend(Glob(SOURCE_PY_DIR + 'apps/common/*.py'))
|
||||
SOURCE_PY.extend(Glob(SOURCE_PY_DIR + 'apps/common/*/*.py'))
|
||||
SOURCE_PY.extend(Glob(SOURCE_PY_DIR + 'apps/debug/*.py'))
|
||||
|
@ -458,7 +458,7 @@ if FROZEN:
|
||||
])
|
||||
)
|
||||
|
||||
SOURCE_PY.append(SOURCE_PY_DIR + 'apps/base.py')
|
||||
SOURCE_PY.extend(Glob(SOURCE_PY_DIR + 'apps/*.py'))
|
||||
SOURCE_PY.extend(Glob(SOURCE_PY_DIR + 'apps/common/*.py'))
|
||||
SOURCE_PY.extend(Glob(SOURCE_PY_DIR + 'apps/common/*/*.py'))
|
||||
SOURCE_PY.extend(Glob(SOURCE_PY_DIR + 'apps/debug/*.py'))
|
||||
|
Loading…
Reference in New Issue
Block a user