From 88cb4aa24b3d6ae71ab79c5d9e71579a8b8c6010 Mon Sep 17 00:00:00 2001 From: lxh Date: Fri, 15 Nov 2024 19:17:34 +0800 Subject: [PATCH] =?UTF-8?q?libatomic=5Fops=E5=BA=93=E7=9A=84hpkbuild?= =?UTF-8?q?=E6=96=87=E4=BB=B6=E7=9A=84=E4=BB=A3=E7=A0=81=E8=A7=84=E8=8C=83?= =?UTF-8?q?=E6=95=B4=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: lxh --- thirdparty/libatomic_ops/HPKBUILD | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/thirdparty/libatomic_ops/HPKBUILD b/thirdparty/libatomic_ops/HPKBUILD index eb86cf2d..ef33df55 100644 --- a/thirdparty/libatomic_ops/HPKBUILD +++ b/thirdparty/libatomic_ops/HPKBUILD @@ -50,8 +50,8 @@ prepare() { build() { cd $builddir/$ARCH-build - ../configure "$@" --host=$host > `pwd`/build.log 2>&1 - make V=1 -j4 >> `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 @@ -59,7 +59,7 @@ build() { package() { cd $builddir/$ARCH-build - make install > `pwd`/build.log 2>&1 + $MAKE VERBOSE=1 install > $buildlog 2>&1 cd $OLDPWD unset host if [ $ARCH == "armeabi-v7a" ] -- Gitee