From: Miklos Szeredi Date: Mon, 2 Jan 2006 16:27:48 +0000 (+0000) Subject: fix X-Git-Tag: fuse_2_5_0_pre2~15 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=f1941479b277a89e9ab06845d0c01199c30a643f;p=qemu-gpiodev%2Flibfuse.git fix --- diff --git a/ChangeLog b/ChangeLog index 417955d..1b7fe96 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,10 @@ 2006-01-02 Miklos Szeredi - * Fix mount.fuse so that it ignores the 'user' option. - Report and solution from Mattd. + * mount.fuse: the 'user' option should be ignored. Report and + solution from Mattd. + + * mount.fuse: export PATH in the right place. Report and patch + from Hannes Schweizer 2005-12-16 Miklos Szeredi diff --git a/util/mount.fuse b/util/mount.fuse index db9562f..3ea6d9e 100644 --- a/util/mount.fuse +++ b/util/mount.fuse @@ -26,6 +26,7 @@ function die { FSTYPE=${1%%\#*} # for now i have to be same as FUSE mount binary # should be configurable +export PATH FSBIN=`which ${FSTYPE} 2>/dev/null` \ || die "Can not find FUSE mount binary for FS ${FSTYPE}" 1 @@ -42,8 +43,4 @@ shift OPTIONS=`echo $@ | sed 's/,user//'` -export PATH ${FSTYPE} ${MOUNTPATH} ${MOUNTPOINT} ${OPTIONS} - - -