98usrmount/mount-usr.sh: remove extra slash

otherwise we have /sysroot//usr in fstab
master
Harald Hoyer 2012-02-09 13:58:49 +01:00
parent 7b2d3d995c
commit 075de7be45
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ mount_usr()
# check, if we have to mount the /usr filesystem
while read _dev _mp _fs _opts _rest; do
if [ "$_mp" = "/usr" ]; then
echo "$_dev $NEWROOT/$_mp $_fs ${_opts} $_rest"
echo "$_dev ${NEWROOT}${_mp} $_fs ${_opts} $_rest"
_usr_found="1"
break
fi