Changes between Version 13 and Version 14 of Scripts/testport_script


Ignore:
Timestamp:
May 4, 2012, 12:45:30 PM (12 years ago)
Author:
kato23@…
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Scripts/testport_script

    v13 v14  
    2424# testport gawk
    2525# testport -n -l /opt/macports-gnu gawk
    26 # testport -c -r -e -v clang-3.1
     26# testport -r clang-3.1
     27# testport -c -e -v clang-3.1
    2728# testport -s clang-3.1
    2829# testport -c -r openal configure.cc='/opt/macports-test/bin/clang-mp-3.1' configure.cxx='/opt/macports-test/bin/clang++-mp-3.1'
     
    4142-n: delete /opt/macports-test (default) & perform a new MacPorts install from scratch
    4243-p: print PATH variable value
    43 -r: remove / uninstall specified port before reinstalling it
     44-r: remove / uninstall specified port and exit
    4445-s: build and install from source only
    4546-u: update MacPorts system and upgrade outdated ports (cleans work directories)
     
    328329
    329330# clean up previous "${MP_PREFIX}" directory
    330 if [[ $all_new -eq 0 ]] && [[ $build_source -eq 0 ]] && [[ -x "${MP_PREFIX}/bin/port" ]]; then
     331if [[ $all_new -eq 0 ]] && [[ $remove -eq 0 ]] && [[ $build_source -eq 0 ]] && [[ -x "${MP_PREFIX}/bin/port" ]]; then
    331332   if [[ $clean_all -eq 1 ]]; then
    332333      do_clean_all
     
    350351      port -f clean --all "$@"
    351352   fi
     353   exit
    352354fi
    353355