xbps-src: resolve XBPS_DISTDIR correctly with relative paths.

This commit is contained in:
Juan RP 2014-03-24 11:43:16 +01:00
parent 6c2cc1b706
commit 3b291a8b1d
1 changed files with 1 additions and 1 deletions

View File

@ -338,7 +338,7 @@ if [ -n "$IN_CHROOT" ]; then
readonly XBPS_CONFIG_FILE=/etc/xbps/xbps-src.conf
readonly XBPS_DISTDIR=/xbps-packages
else
_distdir="$(dirname $0)"
_distdir="$(readlink -f $(dirname $0))"
if [ "${_distdir}" = "." ]; then
readonly XBPS_DISTDIR="$(pwd -P)"
else