5 Feb
2008
5 Feb
'08
5:42 p.m.
On Feb 5, 2008, at 08:42, mww@macports.org wrote:
@@ -25,3 +26,6 @@ test.run yes test.target check
+post-destroot { + system "cd ${destroot}${prefix}/bin && ln -s flex flex++" +}
Why use system? Why not use the built-in ln command? post-destroot { ln -s flex ${destroot}${prefix}/bin/flex++ }