Changes between Version 13 and Version 14 of Scripts/testport_script
- Timestamp:
- May 4, 2012, 12:45:30 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Scripts/testport_script
v13 v14 24 24 # testport gawk 25 25 # 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 27 28 # testport -s clang-3.1 28 29 # testport -c -r openal configure.cc='/opt/macports-test/bin/clang-mp-3.1' configure.cxx='/opt/macports-test/bin/clang++-mp-3.1' … … 41 42 -n: delete /opt/macports-test (default) & perform a new MacPorts install from scratch 42 43 -p: print PATH variable value 43 -r: remove / uninstall specified port before reinstallingit44 -r: remove / uninstall specified port and exit 44 45 -s: build and install from source only 45 46 -u: update MacPorts system and upgrade outdated ports (cleans work directories) … … 328 329 329 330 # clean up previous "${MP_PREFIX}" directory 330 if [[ $all_new -eq 0 ]] && [[ $ build_source -eq 0 ]] && [[ -x "${MP_PREFIX}/bin/port" ]]; then331 if [[ $all_new -eq 0 ]] && [[ $remove -eq 0 ]] && [[ $build_source -eq 0 ]] && [[ -x "${MP_PREFIX}/bin/port" ]]; then 331 332 if [[ $clean_all -eq 1 ]]; then 332 333 do_clean_all … … 350 351 port -f clean --all "$@" 351 352 fi 353 exit 352 354 fi 353 355