New Ticket     Tickets     Wiki     Browse Source     Timeline     Roadmap     Ticket Reports     Search

Changeset 81886


Ignore:
Timestamp:
08/06/11 05:21:53 (4 years ago)
Author:
jmr@…
Message:

Djinn: remove use of cd

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dports/devel/Djinn/Portfile

    r50980 r81886  
    2626depends_build   port:ghc 
    2727 
    28 configure       { cd ${worksrcpath} 
    29                   system "runghc Setup configure --ghc --prefix=${prefix}" 
     28configure       { 
     29                  system -W ${worksrcpath} "runghc Setup configure --ghc --prefix=${prefix}" 
    3030                } 
    3131 
    32 build           { cd ${worksrcpath} 
    33                   system "runghc Setup build" 
     32build           { 
     33                  system -W ${worksrcpath} "runghc Setup build" 
    3434                } 
    3535 
    36 destroot        { cd ${worksrcpath} 
    37                   system "runghc Setup copy --copy-prefix=${destroot}${prefix}" 
     36destroot        { 
     37                  system -W ${worksrcpath} "runghc Setup copy --copy-prefix=${destroot}${prefix}" 
    3838                } 
    3939 
    40 post-activate   { cd ${worksrcpath} 
    41                   catch { system "runghc Setup unregister"} 
    42                   system "runghc Setup register" 
     40post-activate   { 
     41                  catch { system -W ${worksrcpath} "runghc Setup unregister"} 
     42                  system -W ${worksrcpath} "runghc Setup register" 
    4343                } 
    4444 
Note: See TracChangeset for help on using the changeset viewer.