From 28e38c23b94437e1f50d1a6ead11d70de4620781 Mon Sep 17 00:00:00 2001 From: lxh Date: Fri, 15 Nov 2024 17:12:24 +0800 Subject: [PATCH] =?UTF-8?q?cppunit=E5=BA=93=E7=9A=84hpkbuild=E6=96=87?= =?UTF-8?q?=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: lxh --- thirdparty/cppunit/HPKBUILD | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/thirdparty/cppunit/HPKBUILD b/thirdparty/cppunit/HPKBUILD index 3231762a..f998c418 100644 --- a/thirdparty/cppunit/HPKBUILD +++ b/thirdparty/cppunit/HPKBUILD @@ -34,8 +34,8 @@ prepare() { build() { cd $pkgname-$ARCH-build - ./configure "$@" --host=$host >> `pwd`/build.log 2>&1 - make -j4 VERBOSE=1 >> `pwd`/build.log 2>&1 + PKG_CONFIG_LIBDIR="${pkgconfigpath}" ./configure "$@" --host=$host >> $buildlog 2>&1 + $MAKE VERBOSE=1 >> $buildlog 2>&1 ret=$? cd $OLDPWD return $ret @@ -43,7 +43,7 @@ build() { package() { cd $pkgname-$ARCH-build - make install >> `pwd`/build.log 2>&1 + $MAKE VERBOSE=1 install >> $buildlog 2>&1 ret=$? cd $OLDPWD if [ $ARCH == "arm64-v8a" ];then -- Gitee