On Feb 5, 2008, at 08:42, mww at 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++
}