Fix conditionals for $build_wrksrc.
--HG-- extra : convert_revision : c85c8bed3cf76b909ae08b40bb73e9585e9656dc
This commit is contained in:
parent
80302acf87
commit
1667c062b8
3 changed files with 10 additions and 4 deletions
|
@ -69,7 +69,9 @@ configure_src_phase()
|
|||
[ -z "$configure_script" ] && configure_script="./configure"
|
||||
|
||||
cd $wrksrc || return 1
|
||||
[ -n "$build_wrksrc" ] && cd $build_wrksrc || return 1
|
||||
if [ -n "$build_wrksrc" ]; then
|
||||
cd $build_wrksrc || return 1
|
||||
fi
|
||||
|
||||
. $XBPS_SHUTILSDIR/buildvars_funcs.sh
|
||||
set_build_vars
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue