From aa6678dda16c4bc2ec3695de33288377026c04fb Mon Sep 17 00:00:00 2001 From: lxh Date: Fri, 15 Nov 2024 18:18:50 +0800 Subject: [PATCH] =?UTF-8?q?gettext=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/gettext/HPKBUILD | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/thirdparty/gettext/HPKBUILD b/thirdparty/gettext/HPKBUILD index 18dba22e..c5bca8b6 100755 --- a/thirdparty/gettext/HPKBUILD +++ b/thirdparty/gettext/HPKBUILD @@ -51,8 +51,8 @@ prepare() { build() { cd $builddir/$ARCH-build LDFLAGS="--static $LDFLAGS" CFLAGS="-static -Wno-error=int-conversion $CFLAGS" \ - ../configure "$@" --host=$host --srcdir=`pwd`/../ > `pwd`/build.log 2>&1 - make -j4 VERBOSE=1 >> `pwd`/build.log 2>&1 + PKG_CONFIG_LIBDIR="${pkgconfigpath}" ../configure "$@" --host=$host --srcdir=`pwd`/../ > $buildlog 2>&1 + $MAKE VERBOSE=1 >> $buildlog 2>&1 ret=$? cd $OLDPWD return $ret @@ -60,7 +60,7 @@ build() { package() { cd $builddir/$ARCH-build - make install VERBOSE=1 >> `pwd`/build.log 2>&1 + $MAKE install VERBOSE=1 >> $buildlog 2>&1 cd $OLDPWD if [ $ARCH == "armeabi-v7a" ];then unsetarm32ENV -- Gitee