Do not override PATH in chroot and always make lib64 -> lib symlinks on
x86_64. --HG-- extra : convert_revision : 48d28cff104a1cc8d8a57cef299b08bdc4edb272
This commit is contained in:
parent
19b8381b64
commit
a37c42c94d
12
xbps.sh
12
xbps.sh
|
@ -213,6 +213,16 @@ check_config_vars()
|
|||
[ $? -ne 0 ] && msg_error "couldn't create '$f' directory"
|
||||
fi
|
||||
done
|
||||
|
||||
if [ "$xbps_machine" = "x86_64" ]; then
|
||||
[ ! -d $XBPS_MASTERDIR/lib ] && mkdir -p $XBPS_MASTERDIR/lib
|
||||
[ ! -h $XBPS_MASTERDIR/lib64 ] && \
|
||||
cd $XBPS_MASTERDIR && ln -s lib lib64
|
||||
[ ! -d $XBPS_MASTERDIR/usr/lib ] && \
|
||||
mkdir -p $XBPS_MASTERDIR/usr/lib
|
||||
[ ! -h $XBPS_MASTERDIR/usr/lib64 ] && \
|
||||
cd $XBPS_MASTERDIR/usr && ln -s lib lib64
|
||||
fi
|
||||
}
|
||||
|
||||
#
|
||||
|
@ -306,8 +316,8 @@ prepare_tmpl()
|
|||
if [ -z "$in_chroot" ]; then
|
||||
export PATH="$XBPS_MASTERDIR/bin:$XBPS_MASTERDIR/sbin"
|
||||
export PATH="$PATH:$XBPS_MASTERDIR/usr/bin:$XBPS_MASTERDIR/usr/sbin"
|
||||
export PATH="$PATH:/bin:/sbin:/usr/bin:/usr/sbin"
|
||||
fi
|
||||
export PATH="$PATH:/bin:/sbin:/usr/bin:/usr/sbin"
|
||||
}
|
||||
|
||||
#
|
||||
|
|
Loading…
Reference in New Issue