New Ticket     Tickets     Wiki     Browse Source     Timeline     Roadmap     Ticket Reports     Search

Changeset 83161


Ignore:
Timestamp:
08/26/11 11:55:45 (4 years ago)
Author:
ryandesign@…
Message:

Use system -W

Location:
trunk/dports
Files:
12 edited

Legend:

Unmodified
Added
Removed
  • trunk/dports/aqua/vineserver/Portfile

    r78672 r83161  
    4646    } 
    4747    foreach {language encoding} ${language_encodings} { 
    48         system "cd ${worksrcpath}/${language}.lproj && cp -p Localizable.strings Localizable.strings.orig && ${prefix}/bin/iconv -f ${encoding} -t utf-16 Localizable.strings.orig > Localizable.strings" 
     48        system -W ${worksrcpath}/${language}.lproj "cp -p Localizable.strings Localizable.strings.orig && ${prefix}/bin/iconv -f ${encoding} -t utf-16 Localizable.strings.orig > Localizable.strings" 
    4949    } 
    5050} 
  • trunk/dports/games/mystonline-cider/Portfile

    r71090 r83161  
    9191     
    9292    # Build the chown wrapper program 
    93     system "cd ${worksrcpath} && ${configure.cc} ${configure.cc_archflags} chown-data.c -o chown-data" 
     93    system -W ${worksrcpath} "${configure.cc} ${configure.cc_archflags} chown-data.c -o chown-data" 
    9494} 
    9595 
  • trunk/dports/games/mystonline-wine/Portfile

    r71090 r83161  
    7878     
    7979    # Build the chown wrapper program 
    80     system "cd ${worksrcpath} && ${configure.cc} ${configure.cc_archflags} chown-data.c -o chown-data" 
     80    system -W ${worksrcpath} "${configure.cc} ${configure.cc_archflags} chown-data.c -o chown-data" 
    8181} 
    8282 
  • trunk/dports/graphics/graphviz-oldgui/Portfile

    r71090 r83161  
    5555    } 
    5656    # Convert the strings from UTF-16 to UTF-8 so that we can patch them. 
    57     system "cd ${worksrcpath}/Graphviz.app/Contents/Resources/English.lproj && ${prefix}/bin/iconv -f utf-16 -t utf-8 InfoPlist.strings > InfoPlist.strings.utf8" 
     57    system -W ${worksrcpath}/Graphviz.app/Contents/Resources/English.lproj "${prefix}/bin/iconv -f utf-16 -t utf-8 InfoPlist.strings > InfoPlist.strings.utf8" 
    5858} 
    5959 
     
    6363post-patch { 
    6464    # Convert the strings back to UTF-16 which is what Mac OS X expects. 
    65     system "cd ${worksrcpath}/Graphviz.app/Contents/Resources/English.lproj && ${prefix}/bin/iconv -f utf-8 -t utf-16 InfoPlist.strings.utf8 > InfoPlist.strings" 
     65    system -W ${worksrcpath}/Graphviz.app/Contents/Resources/English.lproj "${prefix}/bin/iconv -f utf-8 -t utf-16 InfoPlist.strings.utf8 > InfoPlist.strings" 
    6666    delete ${worksrcpath}/Graphviz.app/Contents/Resources/English.lproj/InfoPlist.strings.utf8 
    6767} 
  • trunk/dports/lang/php4/Portfile

    r75724 r83161  
    291291    post-extract { 
    292292        delete ${worksrcpath}/ext/pdf 
    293         system "cd ${workpath} && /usr/bin/gnutar --no-same-owner -xzf ${distpath}/${pdflib_distfile}" 
     293        system -W ${workpath} "/usr/bin/gnutar --no-same-owner -xzf ${distpath}/${pdflib_distfile}" 
    294294        move ${workpath}/${pdflib_distname} ${worksrcpath}/ext/pdf 
    295295    } 
     
    400400     
    401401    #nuke pear-stuff in ${destroot} 
    402     system "cd ${destroot} && rm -rf .channels .depdb .depdblock .filemap .lock" 
     402    system -W ${destroot} "rm -rf .channels .depdb .depdblock .filemap .lock" 
    403403     
    404404    system "if \[ -f ${prefix}/lib/php4/.depdblock \]; then rm -f ${destroot}${prefix}/lib/php4/.depdblock; fi" 
  • trunk/dports/lang/php5-devel/Portfile

    r83025 r83161  
    168168    post-destroot { 
    169169        #nuke pear-stuff in ${destroot} 
    170         system "cd ${destroot} && rm -rf .channels .depdb .depdblock .filemap .lock" 
     170        system -W ${destroot} "rm -rf .channels .depdb .depdblock .filemap .lock" 
    171171         
    172172        system "if \[ -f ${prefix}/lib/php/.depdblock \]; then rm -f ${destroot}${prefix}/lib/php/.depdblock; fi" 
  • trunk/dports/lang/php5/Portfile

    r83025 r83161  
    169169    post-destroot { 
    170170        #nuke pear-stuff in ${destroot} 
    171         system "cd ${destroot} && rm -rf .channels .depdb .depdblock .filemap .lock" 
     171        system -W ${destroot} "rm -rf .channels .depdb .depdblock .filemap .lock" 
    172172         
    173173        system "if \[ -f ${prefix}/lib/php/.depdblock \]; then rm -f ${destroot}${prefix}/lib/php/.depdblock; fi" 
  • trunk/dports/lang/php52/Portfile

    r80042 r83161  
    334334    post-destroot { 
    335335        #nuke pear-stuff in ${destroot} 
    336         system "cd ${destroot} && rm -rf .channels .depdb .depdblock .filemap .lock" 
     336        system -W ${destroot} "rm -rf .channels .depdb .depdblock .filemap .lock" 
    337337         
    338338        system "if \[ -f ${prefix}/lib/php/.depdblock \]; then rm -f ${destroot}${prefix}/lib/php/.depdblock; fi" 
  • trunk/dports/multimedia/quickascii/Portfile

    r80038 r83161  
    2626post-extract { 
    2727    copy ${filespath}/Makefile ${worksrcpath} 
    28     system "cd ${worksrcpath} && make clean" 
     28    system -W ${worksrcpath} "make clean" 
    2929} 
    3030 
  • trunk/dports/sysutils/bbcolors/Portfile

    r71090 r83161  
    7272 
    7373build { 
    74     system "cd ${worksrcpath} && ${prefix}/bin/pod2man bbcolors > bbcolors.1" 
     74    system -W ${worksrcpath} "${prefix}/bin/pod2man bbcolors > bbcolors.1" 
    7575} 
    7676 
  • trunk/dports/sysutils/isightcapture/Portfile

    r71090 r83161  
    3939build { 
    4040    if {![variant_isset universal]} { 
    41         system "cd ${worksrcpath} && lipo -extract ${configure.build_arch} ${name} -output ${name}" 
     41        system -W ${worksrcpath} "lipo -extract ${configure.build_arch} ${name} -output ${name}" 
    4242    } 
    4343} 
  • trunk/dports/www/tidy/Portfile

    r71101 r83161  
    2828 
    2929pre-configure { 
    30     system "cd ${worksrcpath} && /bin/sh ${worksrcpath}/build/gnuauto/setup.sh" 
     30    system -W ${worksrcpath} "/bin/sh ${worksrcpath}/build/gnuauto/setup.sh" 
    3131} 
    3232 
Note: See TracChangeset for help on using the changeset viewer.