diff --git a/thirdparty/libuuid/HPKBUILD b/thirdparty/libuuid/HPKBUILD index d4adabb8cc36404dfdb0a9d44e1659b71dfcb7e8..de741ad857927fc9f725d2171b7c6bf648441986 100644 --- a/thirdparty/libuuid/HPKBUILD +++ b/thirdparty/libuuid/HPKBUILD @@ -38,8 +38,9 @@ prepare() { build() { cd $builddir/$ARCH-build - ../configure "$@" --host=$host > `pwd`/build.log 2>&1 - make -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 @@ -47,14 +48,14 @@ build() { package() { cd $builddir/$ARCH-build - make install >> `pwd`/build.log 2>&1 + $MAKE install >> $buildlog 2>&1 cd $OLDPWD unset host } check() { cd $builddir/$ARCH-build - make check >> `pwd`/build.log 2>&1 + $MAKE check >> $buildlog 2>&1 cd $OLDPWD if [ $ARCH == "armeabi-v7a" ] then