diff --git a/thirdparty/libatomic_ops/HPKBUILD b/thirdparty/libatomic_ops/HPKBUILD index eb86cf2d2ad641980bf3843d3e3f2df3ea5e301d..ef33df55055467a2569f6b11e4fab65412638a5c 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" ]