Changes between Initial Version and Version 1 of Ticket #26918, comment 7
- Timestamp:
- Jun 1, 2013, 8:07:00 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #26918, comment 7
initial v1 1 1 I can confirm seeing the same issue. We see it regardless of whether the underlying nfs filesystem is xfs or ext3. 2 2 3 The culprit appears to be in 'proc fileAttrsAsRoot {file attributes} {'in share/macports/Tcl/port1.0/portutil.tcl3 The culprit appears to be in `proc fileAttrsAsRoot {file attributes} {` in share/macports/Tcl/port1.0/portutil.tcl 4 4 5 Specifically, the line 'eval file attributes {$file} $attributes'is trying to run (among other things), the following TCL command, which fails:5 Specifically, the line `eval file attributes {$file} $attributes` is trying to run (among other things), the following TCL command, which fails: 6 6 7 {{{ 7 8 file attributes /path/to/foo -readonly 0 9 }}} 8 10 9 11 Arguments about whether running MacPorts on a network aside, would it be possible to subvert this command? It seems to me unnecessary to forcibly state that a file should NOT be read-only.