mirror of
https://github.com/apache/nuttx.git
synced 2026-05-31 05:55:46 +08:00
configure.sh: update custom board config build
If Make.defs not found under boardconfig dir, then try scripts/Make.defs. Signed-off-by: liuhaitao <liuhaitao@xiaomi.com>
This commit is contained in:
+6
-2
@@ -165,8 +165,12 @@ if [ ! -r ${src_makedefs} ]; then
|
|||||||
if [ ! -r ${src_makedefs} ]; then
|
if [ ! -r ${src_makedefs} ]; then
|
||||||
src_makedefs=${TOPDIR}/${boardconfig}/Make.defs
|
src_makedefs=${TOPDIR}/${boardconfig}/Make.defs
|
||||||
if [ ! -r ${src_makedefs} ]; then
|
if [ ! -r ${src_makedefs} ]; then
|
||||||
echo "File Make.defs could not be found"
|
src_makedefs=${TOPDIR}/${boardconfig}/../../scripts/Make.defs
|
||||||
exit 4
|
|
||||||
|
if [ ! -r ${src_makedefs} ]; then
|
||||||
|
echo "File Make.defs could not be found"
|
||||||
|
exit 4
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|||||||
Reference in New Issue
Block a user