From: Harald Hoyer Date: Thu, 9 Feb 2012 12:58:49 +0000 (+0100) Subject: 98usrmount/mount-usr.sh: remove extra slash X-Git-Tag: 016~29 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=075de7be458c4135f277d900c83bb7c3960dde8d;p=thirdparty%2Fdracut.git 98usrmount/mount-usr.sh: remove extra slash otherwise we have /sysroot//usr in fstab --- diff --git a/modules.d/98usrmount/mount-usr.sh b/modules.d/98usrmount/mount-usr.sh index b24446ae3..5139c7a0b 100755 --- a/modules.d/98usrmount/mount-usr.sh +++ b/modules.d/98usrmount/mount-usr.sh @@ -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