1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-22 15:38:11 +00:00

build: add missing environment to boardloader sconscript

This commit is contained in:
Pavol Rusnak 2017-09-04 14:15:16 +02:00
parent 82ae061922
commit b31cb18e80
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

View File

@ -1,5 +1,7 @@
# pylint: disable=E0602
import os
CCFLAGS_MOD = ''
CPPPATH_MOD = []
CPPDEFINES_MOD = []
@ -82,7 +84,7 @@ SOURCE_TREZORHAL = [
'embed/trezorhal/hal/stm32f4xx_ll_fsmc.c',
]
env = Environment()
env = Environment(ENV=os.environ)
env.Replace(
AS='arm-none-eabi-as',