Changes between Version 125 and Version 126 of FAQ
- Timestamp:
- Feb 18, 2013, 10:31:24 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FAQ
v125 v126 261 261 The `cd` command was removed from trunk in r28796. As of release 1.7.0 it is no longer available for use in Portfiles. `cd` is harmful as it changes the current directory of the whole process and not only of the current Tcl interpreter. Also, it becomes unreliable when used inside phases and other phases begin to rely on it. 262 262 263 Please use absolute paths instead, starting with ${worksrcpath}. If you need to run a command with `system`, use it like `system "cd ${worksrcpath} &&autoreconf"`.263 Please use absolute paths instead, starting with ${worksrcpath}. If you need to run a command with `system`, use it like `system -W ${worksrcpath} "autoreconf"`. 264 264 265 265 === What is the process for becoming a committer? === #committer