When using run_func() we don't care about stderr output.

--HG--
extra : convert_revision : 618d1c2eda49e1c55abec28d36f3430f37b9b867
This commit is contained in:
Juan RP 2010-04-22 06:50:11 +02:00
parent 6bb4ee33b0
commit 33770e8bbc
4 changed files with 11 additions and 11 deletions

View file

@ -57,7 +57,7 @@ build_src_phase()
makejobs="-j$XBPS_MAKEJOBS"
fi
# Run pre_build func.
run_func pre_build || msg_error "pre_build stage failed!"
run_func pre_build 2>/dev/null || msg_error "pre_build stage failed!"
. $XBPS_SHUTILSDIR/buildvars_funcs.sh
set_build_vars
@ -65,7 +65,7 @@ build_src_phase()
msg_normal "Running build phase for $pkg."
if [ "$build_style" = "custom-install" ]; then
run_func do_build || msg_error "do_build stage failed!"
run_func do_build 2>/dev/null || msg_error "do_build stage failed!"
else
#
# Build package via make.
@ -75,7 +75,7 @@ build_src_phase()
fi
# Run post_build func.
run_func post_build || msg_error "post_build stage failed!"
run_func post_build 2>/dev/null || msg_error "post_build stage failed!"
unset makejobs