From b63f664cf868865e6e228f72b79f50859a2fbfdd Mon Sep 17 00:00:00 2001 From: lxh Date: Mon, 4 Nov 2024 17:52:26 +0800 Subject: [PATCH] =?UTF-8?q?bzip2=E5=BA=93=E7=9A=84hpkbuild=E6=96=87?= =?UTF-8?q?=E4=BB=B6=E7=9A=84=E4=BB=A3=E7=A0=81=E6=A0=BC=E5=BC=8F=E6=95=B4?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: lxh --- thirdparty/bzip2/HPKBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/thirdparty/bzip2/HPKBUILD b/thirdparty/bzip2/HPKBUILD index 6d8cd528..08c8a49d 100644 --- a/thirdparty/bzip2/HPKBUILD +++ b/thirdparty/bzip2/HPKBUILD @@ -58,7 +58,7 @@ prepare() { build() { cd $builddir-$ARCH-build - make CC=${cc} AR=${ar} RANLIB=${ranlib} -j4 libbz2.a bzip2 bzip2recover > `pwd`/build.log 2>&1 + $MAKE VERBOSE=1 CC=${cc} AR=${ar} RANLIB=${ranlib} libbz2.a bzip2 bzip2recover > $buildlog 2>&1 ret=$? cd $OLDPWD return $ret @@ -66,7 +66,7 @@ build() { package() { cd $builddir-$ARCH-build - make install PREFIX=$LYCIUM_ROOT/usr/$pkgname/$ARCH >> `pwd`/build.log 2>&1 + $MAKE VERBOSE=1 install PREFIX=$LYCIUM_ROOT/usr/$pkgname/$ARCH >> $buildlog 2>&1 cd $OLDPWD unset cc ar ranlib } -- Gitee