subports

Jeremy Lavergne jeremy at lavergne.gotdns.org
Tue Jan 3 21:05:08 PST 2012


> configure {
>    system "cd ${worksrcpath} ; ./configure --prefix=${prefix} --with-csl ; ./configure --with-psl"
> }

Just a reminder we've got the -W flag:
system -W ${worksrcpath} "..."

> 
> Would this work?
> 
> Then in the build phase it should make both types lisp systems. Correct?

That won't do what you expect: the second instance of ./configure will clobber what the first one has done. The only way possible to get both to fire at the sametime would be to use both flags in the same command:
./configure --with-one --with-two

At that point, you'd want "configure.args-append --with-one --with-two" in the Portfile.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: smime.p7s
Type: application/pkcs7-signature
Size: 8796 bytes
Desc: not available
URL: <http://lists.macosforge.org/pipermail/macports-dev/attachments/20120104/0c461db6/attachment.bin>


More information about the macports-dev mailing list