[154020] trunk/dports/science/Gyoto/Portfile
Ryan Schmidt
ryandesign at macports.org
Wed Oct 19 19:36:57 PDT 2016
> On Oct 18, 2016, at 7:04 AM, thibaut at macports.org wrote:
>
> Revision
> 154020
> Author
> thibaut at macports.org
> Date
> 2016-10-18 05:04:07 -0700 (Tue, 18 Oct 2016)
> Log Message
>
> Gyoto: fix py??-gyoto post-destroot when gmake is not available
> Modified Paths
>
> • trunk/dports/science/Gyoto/Portfile
> + system "cd ${worksrcpath}/plugins/python && ${build.cmd} install DESTDIR=${destroot}"
Instead of running 'cd' within 'system', you should use system's -W argument, like this:
system -W ${worksrcpath}/plugins/python "${build.cmd} install DESTDIR=${destroot}"
More information about the macports-dev
mailing list