mirror of
https://github.com/apache/nuttx.git
synced 2025-01-13 06:18:40 +08:00
tools/configure.sh: add relative path
support #include "../ap/defconfig" in defconfig Signed-off-by: ligd <liguiding1@xiaomi.com>
This commit is contained in:
parent
3c3865bce0
commit
90afe58ad7
1 changed files with 1 additions and 1 deletions
|
@ -242,7 +242,7 @@ echo " Copy files"
|
||||||
ln -sf ${src_makedefs} ${dest_makedefs} || \
|
ln -sf ${src_makedefs} ${dest_makedefs} || \
|
||||||
{ echo "Failed to symlink ${src_makedefs}" ; exit 8 ; }
|
{ echo "Failed to symlink ${src_makedefs}" ; exit 8 ; }
|
||||||
${TOPDIR}/tools/process_config.sh -I ${configpath}/../../common/configs \
|
${TOPDIR}/tools/process_config.sh -I ${configpath}/../../common/configs \
|
||||||
-I ${configpath}/../common -o ${dest_config} ${src_config}
|
-I ${configpath}/../common -I ${configpath} -o ${dest_config} ${src_config}
|
||||||
install -m 644 ${src_config} "${backup_config}" || \
|
install -m 644 ${src_config} "${backup_config}" || \
|
||||||
{ echo "Failed to backup ${src_config}" ; exit 10 ; }
|
{ echo "Failed to backup ${src_config}" ; exit 10 ; }
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue