diff options
author | Stefan Schweizer <genstef@gentoo.org> | 2004-12-05 22:01:49 +0000 |
---|---|---|
committer | Stefan Schweizer <genstef@gentoo.org> | 2004-12-05 22:01:49 +0000 |
commit | b0e2008cc7d8c458e87978a338ca3e51cfd718e8 (patch) | |
tree | 7cbab8953e1f6c4a9cb558cd66aaa774cca42ca0 /sys-fs/captive/files | |
parent | Updated error msg info to instruct users better as to how gcc can be set up w... (diff) | |
download | gentoo-2-b0e2008cc7d8c458e87978a338ca3e51cfd718e8.tar.gz gentoo-2-b0e2008cc7d8c458e87978a338ca3e51cfd718e8.tar.bz2 gentoo-2-b0e2008cc7d8c458e87978a338ca3e51cfd718e8.zip |
Adding a patch to make "mount -t captive-ntfs" working, bumping the revision to send it out.
Diffstat (limited to 'sys-fs/captive/files')
-rw-r--r-- | sys-fs/captive/files/digest-captive-1.1.5-r1 (renamed from sys-fs/captive/files/digest-captive-1.1.5) | 0 | ||||
-rw-r--r-- | sys-fs/captive/files/use-lufis-for-mount-t-captive.patch | 23 |
2 files changed, 23 insertions, 0 deletions
diff --git a/sys-fs/captive/files/digest-captive-1.1.5 b/sys-fs/captive/files/digest-captive-1.1.5-r1 index a61cef8f5473..a61cef8f5473 100644 --- a/sys-fs/captive/files/digest-captive-1.1.5 +++ b/sys-fs/captive/files/digest-captive-1.1.5-r1 diff --git a/sys-fs/captive/files/use-lufis-for-mount-t-captive.patch b/sys-fs/captive/files/use-lufis-for-mount-t-captive.patch new file mode 100644 index 000000000000..7dc979b50631 --- /dev/null +++ b/sys-fs/captive/files/use-lufis-for-mount-t-captive.patch @@ -0,0 +1,23 @@ +This patch was introduced by me, to make "mount -t captive-ntfs" working with lufis. + +--- captive-1.1.5/src/client/lufs/mount.captive.in.orig 2004-12-05 21:59:19.561715008 +0100 ++++ captive-1.1.5/src/client/lufs/mount.captive.in 2004-12-05 22:00:49.549034856 +0100 +@@ -28,8 +28,7 @@ + my $vardir='@localstatedir@/lib/captive'; + $vardir=~s#\$\Q{prefix}\E#'@prefix@';#ge; + $vardir="/var/lib/captive" if $vardir=~/^@/; +-my $lufsd_bin='@PATH_LUFSD@'; +-$lufsd_bin="/usr/bin/lufsd" if $lufsd_bin=~/^@/; ++my $lufsd_bin="/usr/bin/lufis"; + my $captive_sandbox_server_bin='@sbindir@/captive-sandbox-server'; + $captive_sandbox_server_bin=~s#\$\Q{exec_prefix}\E#'@exec_prefix@';#ge; + $captive_sandbox_server_bin=~s#\$\Q{prefix}\E#'@prefix@';#ge; +@@ -129,7 +128,7 @@ + warn "$0: '-n' not supported - ignored" if $nomtab; + + # Use "'$oo'" to permit another expansion by bash(1) during lufsmnt(8) execution. +-my @argv=($lufsd_bin,"none",$dir,"-o",$oo); ++my @argv=($lufsd_bin,$oo,$dir,"-s"); + + print STDERR "$0: @argv\n" if $verbose; + exec $lufsd_bin @argv; |