diff --git a/thirdparty/lame/HPKBUILD b/thirdparty/lame/HPKBUILD index 6f7a0ca3c9dbdccabb5272e5727f9761fbd58770..b10fbb8f7884cf7de5682b15aa34c7a967969a15 100644 --- a/thirdparty/lame/HPKBUILD +++ b/thirdparty/lame/HPKBUILD @@ -37,8 +37,8 @@ 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 @@ -46,14 +46,14 @@ build() { package() { cd $builddir/$ARCH-build - make install >> `pwd`/build.log 2>&1 + $MAKE VERBOSE=1 install >> $buildlog 2>&1 cd $OLDPWD unset host } check() { cd $builddir/$ARCH-build - make check >> `pwd`/build.log 2>&1 + $MAKE VERBOSE=1 check >> $buildlog 2>&1 cd $OLDPWD if [ $ARCH == "armeabi-v7a" ] then