[22057] trunk/dports/fuse/fusefs/Portfile
source_changes at macosforge.org
source_changes at macosforge.org
Fri Feb 16 00:22:02 PST 2007
Revision: 22057
http://trac.macosforge.org/projects/macports/changeset/22057
Author: eridius at macports.org
Date: 2007-02-16 00:22:01 -0800 (Fri, 16 Feb 2007)
Log Message:
-----------
Stop using the pextlib find command in fusefs, because it breaks compatibility with 1.3.2.
The find command can be re-added once we ship 1.4
Modified Paths:
--------------
trunk/dports/fuse/fusefs/Portfile
Modified: trunk/dports/fuse/fusefs/Portfile
===================================================================
--- trunk/dports/fuse/fusefs/Portfile 2007-02-16 05:56:42 UTC (rev 22056)
+++ trunk/dports/fuse/fusefs/Portfile 2007-02-16 08:22:01 UTC (rev 22057)
@@ -58,8 +58,8 @@
# copy fusefs.kext
file copy -- ${builddir}/fusefs.kext ${extdir}/
- find ${extdir}/fusefs.kext {1} {
- file attributes $_filename -owner root -group wheel
+ foreach filename [split [exec find ${extdir}/fusefs.kext] \n] {
+ file attributes $filename -owner root -group wheel
}
# copy load_fusefs
@@ -69,8 +69,8 @@
# copy fusefs.fs
xinstall -d -m 755 -o root -g wheel ${sysfsdir}
file copy -- ${builddir}/fusefs.fs ${sysfsdir}
- find ${sysfsdir}/fusefs.fs {1} {
- file attributes $_filename -owner root -group wheel
+ foreach filename [split [exec find ${sysfsdir}/fusefs.fs] \n] {
+ file attributes $filename -owner root -group wheel
}
# copy mount_fusefs
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.macosforge.org/pipermail/macports-changes/attachments/20070216/49fb6114/attachment.html
More information about the macports-changes
mailing list