From 875c64c605f1c5747b8545488035a062ef3ebced Mon Sep 17 00:00:00 2001 From: ligd Date: Fri, 16 Aug 2024 15:23:00 +0800 Subject: [PATCH] tools/configure.sh: add relative path support #include "../ap/defconfig" in defconfig Signed-off-by: ligd --- tools/configure.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/configure.sh b/tools/configure.sh index 5ad6a553ea46b..a19b8c4d860a4 100755 --- a/tools/configure.sh +++ b/tools/configure.sh @@ -242,7 +242,7 @@ echo " Copy files" ln -sf ${src_makedefs} ${dest_makedefs} || \ { echo "Failed to symlink ${src_makedefs}" ; exit 8 ; } ${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}" || \ { echo "Failed to backup ${src_config}" ; exit 10 ; }