From c09bc7a2ad7cd9a3ee191af90d1ae86d57bbbf1b Mon Sep 17 00:00:00 2001 From: xwx1135370 Date: Mon, 20 May 2024 10:53:31 +0800 Subject: [PATCH] [R&D][build] "${NCURSES_SRC_DIR}/configure" not found Issue: https://gitee.com/openharmony/third_party_llvm-project/issues/I9QHKT?from=project-issue Test: LLVM Toolchain Compilation python3 ./toolchain/llvm-project/llvm-build/build-ohos-aarch64.py --build-python --build-ncurses --build-libedit --build-libxml2 python3 ./toolchain/llvm-project/llvm-build/build-ohos-arm.py --build-python --build-ncurses --build-libedit --build-libxml2 Signed-off-by: xwx1135370 --- llvm-build/build_ncurses.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm-build/build_ncurses.sh b/llvm-build/build_ncurses.sh index e97163f64fb8..9a1d9be6f068 100755 --- a/llvm-build/build_ncurses.sh +++ b/llvm-build/build_ncurses.sh @@ -100,7 +100,7 @@ if [ -e ${ncurses_package} ]; then fi NCURSES_HOST_INSTALL_PATH=$9 export LD_LIBRARY_PATH="${NCURSES_HOST_INSTALL_PATH}/lib:$LD_LIBRARY_PATH" - ${NCURSES_SRC_DIR}/configure \ + ${NCURSES_UNTAR_PATH}/configure \ --host="${TARGET}" \ --with-shared \ --prefix=${NCURSES_INSTALL_PATH} \ -- Gitee