[33800] trunk/dports/devel/flex/Portfile

Ryan Schmidt ryandesign at macports.org
Tue Feb 5 09:42:20 PST 2008


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++
}



More information about the macports-dev mailing list