From 8da824c51b9104662acc7d94a39ed2ea8702a800 Mon Sep 17 00:00:00 2001 From: WangQiang Date: Thu, 3 Sep 2020 15:59:20 +0800 Subject: [PATCH] fixed SConstruct file spell error in imxrt1064-nxp-evk --- bsp/imxrt/imxrt1064-nxp-evk/SConstruct | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bsp/imxrt/imxrt1064-nxp-evk/SConstruct b/bsp/imxrt/imxrt1064-nxp-evk/SConstruct index 2827f048f0..01c823f118 100644 --- a/bsp/imxrt/imxrt1064-nxp-evk/SConstruct +++ b/bsp/imxrt/imxrt1064-nxp-evk/SConstruct @@ -46,10 +46,10 @@ Export('RTT_ROOT') Export('rtconfig') SDK_ROOT = os.path.abspath('./') -if os.path.exists(SDK_ROOT + '/Libraries'): - libraries_path_prefix = SDK_ROOT + '/Libraries' +if os.path.exists(SDK_ROOT + '/libraries'): + libraries_path_prefix = SDK_ROOT + '/libraries' else: - libraries_path_prefix = os.path.dirname(SDK_ROOT) + '/Libraries' + libraries_path_prefix = os.path.dirname(SDK_ROOT) + '/libraries' SDK_LIB = libraries_path_prefix Export('SDK_LIB')