Changes between Version 2 and Version 3 of Scripts/testport_script


Ignore:
Timestamp:
Apr 24, 2012, 9:51:54 AM (12 years ago)
Author:
kato23@…
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Scripts/testport_script

    v2 v3  
    2222# testport gawk
    2323# testport -n -l /opt/macports-gnu gawk
     24# testport -c -r -e -v clang-3.1
    2425
    2526
     
    309310
    310311
    311 if [[ $verbose -eq 1 ]]; then
    312    port -f -v install "$@"
    313 elif [[ $debug -eq 1 ]]; then
    314    port -f -d install "$@"
     312if [[ $extract -eq 1 ]] && [[ $verbose -eq 1 ]]; then
     313   port -f clean --all "$@"
     314   port -f -v extract "$@"
     315elif [[ $extract -eq 1 ]] && [[ $debug -eq 1 ]]; then
     316   port -f clean --all "$@"
     317   port -f -v extract "$@"
    315318elif [[ $extract -eq 1 ]]; then
    316319   port -f clean --all "$@"
     
    323326elif [[ $build_source -eq 1 ]]; then
    324327   port -f -s install "$@"
     328elif [[ $verbose -eq 1 ]]; then
     329   port -f -v install "$@"
     330elif [[ $debug -eq 1 ]]; then
     331   port -f -d install "$@"
    325332else
    326333   port -f install "$@"