Changeset 803 for other/dsss-testing-framework/untango.sh
- Timestamp:
- 09/06/07 13:12:08 (1 year ago)
- Files:
-
- other/dsss-testing-framework/untango.sh (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
other/dsss-testing-framework/untango.sh
r739 r803 1 1 #!/bin/bash 2 . plats.sh 3 4 # Recreate Phobos headers (destroyed by tangobosify) 5 for i in $PLATS 6 do 7 pushd /opt/dsss-test/$i 8 if [ -e phobos.tar.bz2 ] 9 then 10 tar jxf phobos.tar.bz2 11 rm -f phobos.tar.bz2 12 fi 13 popd 14 done 15 16 # Swap .phobos files back in 2 17 for i in `find /opt/dsss-test -name '*.phobos'` 3 18 do … … 5 20 done 6 21 7 find /opt/dsss-test -name 'tango' | xargs rm -rf 22 # Remove any tango dirs and object.di 23 find /opt/dsss-test -name 'tango' -o -name 'object.di' | xargs rm -rf 24 25 # Un-remove /etc/rebuild/tango 8 26 for i in /opt/dsss-test/*/etc/rebuild 9 27 do … … 11 29 done 12 30 31 # Uninstall tangobos (if it's installed) 32 for i in $PLATS 33 do 34 PATH="/opt/dsss-test/$i/bin:$PATH" dsss uninstall tangobos 35 done 36 13 37 # Unfortunately, DMD can't be untango'd right now, so just reinstall it 14 38 PATH="/opt/dsss-test/i586-pc-linux-gnu-dmd/bin:$PATH" dsss net --source=http://svn.dsource.org/projects/dsss/sources install dmd
