xbps-src: doinst-helper: we know exact PATH for chroot case, use it.
This commit is contained in:
parent
005be53337
commit
d7c2cc5513
1 changed files with 10 additions and 2 deletions
|
@ -29,14 +29,22 @@ PKG_TMPLNAME="$1"
|
||||||
if [ -n "${CONFIG_FILE}" -a -r "${CONFIG_FILE}" ]; then
|
if [ -n "${CONFIG_FILE}" -a -r "${CONFIG_FILE}" ]; then
|
||||||
. ${CONFIG_FILE}
|
. ${CONFIG_FILE}
|
||||||
else
|
else
|
||||||
. @@XBPS_INSTALL_ETCDIR@@/xbps-src.conf
|
if [ -n "$IN_CHROOT" ]; then
|
||||||
|
. /usr/local/etc/xbps-src.conf
|
||||||
|
else
|
||||||
|
. @@XBPS_INSTALL_ETCDIR@@/xbps-src.conf
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -n "${MASTERDIR}" ]; then
|
if [ -n "${MASTERDIR}" ]; then
|
||||||
export XBPS_MASTERDIR="${MASTERDIR}"
|
export XBPS_MASTERDIR="${MASTERDIR}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
. @@XBPS_INSTALL_SHAREDIR@@/shutils/init_funcs.sh
|
if [ -n "$IN_CHROOT" ]; then
|
||||||
|
. /usr/local/share/xbps-src/shutils/init_funcs.sh
|
||||||
|
else
|
||||||
|
. @@XBPS_INSTALL_SHAREDIR@@/shutils/init_funcs.sh
|
||||||
|
fi
|
||||||
|
|
||||||
set_defvars
|
set_defvars
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue