Skip to content

Commit

Permalink
tools/configure.sh: add relative path
Browse files Browse the repository at this point in the history
support #include "../ap/defconfig" in defconfig

Signed-off-by: ligd <[email protected]>
  • Loading branch information
GUIDINGLI committed Oct 11, 2024
1 parent 933e066 commit 875c64c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/configure.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 ; }

Expand Down

0 comments on commit 875c64c

Please sign in to comment.