summaryrefslogtreecommitdiffstats
path: root/abs/core-testing/mythtv/trunk/clean_all.sh
diff options
context:
space:
mode:
Diffstat (limited to 'abs/core-testing/mythtv/trunk/clean_all.sh')
-rwxr-xr-xabs/core-testing/mythtv/trunk/clean_all.sh22
1 files changed, 0 insertions, 22 deletions
diff --git a/abs/core-testing/mythtv/trunk/clean_all.sh b/abs/core-testing/mythtv/trunk/clean_all.sh
deleted file mode 100755
index b56450e..0000000
--- a/abs/core-testing/mythtv/trunk/clean_all.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/sh
-
-buildlist=('mythtv' 'mytharchive' 'mythbrowser' 'mythgallery' 'mythgame' 'mythmovies' 'mythmusic' 'mythnetvision' 'mythnews' 'mythvideo' 'mythweather' 'mythzoneminder' 'mythweb' 'myththemes' 'morethemes')
-
-# clean up current directory
-rm -f *~
-
-# clean up mythtv directories
-for i in `echo ${buildlist[@]:0}`
-do
- echo "-- cleaning $i"
- cd ./$i
-
- # clean up everything
- rm -rf pkg src
- rm -f *~
-
- cd ..
-done
-
-echo "DONE!"
-