From 27c07e3b7dd71d84c5a259ed949a2e8d2659d8fd Mon Sep 17 00:00:00 2001 From: lxh Date: Thu, 7 Nov 2024 17:57:32 +0800 Subject: [PATCH] =?UTF-8?q?gzip=E5=BA=93=E7=9A=84hpkbuild=E6=96=87?= =?UTF-8?q?=E4=BB=B6=E7=9A=84=E4=BB=A3=E7=A0=81=E8=A7=84=E8=8C=83=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/gzip/HPKBUILD | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/thirdparty/gzip/HPKBUILD b/thirdparty/gzip/HPKBUILD index 1dd873b2..dbab7a29 100644 --- a/thirdparty/gzip/HPKBUILD +++ b/thirdparty/gzip/HPKBUILD @@ -53,8 +53,8 @@ prepare() { build() { cd $builddir/$ARCH-build - ../configure "$@" --host=$host > $buildlog 2>&1 - $MAKE >> $buildlog 2>&1 + PKG_CONFIG_LIBDIR="${pkgconfigpath}" ../configure "$@" --host=$host > $buildlog 2>&1 + $MAKE VERBOSE=1 >> $buildlog 2>&1 ret=$? cd $OLDPWD return $ret @@ -62,7 +62,7 @@ build() { package() { cd $builddir/$ARCH-build - $MAKE install >> $buildlog 2>&1 + $MAKE VERBOSE=1 install >> $buildlog 2>&1 ret=$? cd $OLDPWD unset host -- Gitee