summaryrefslogtreecommitdiffstats
path: root/abs/core-testing/mythtv/trunk/clean_all.sh
diff options
context:
space:
mode:
authorNathan Harris <nharris@eoimaging.com>2009-07-26 16:56:11 (GMT)
committerNathan Harris <nharris@eoimaging.com>2009-07-26 16:56:11 (GMT)
commit19bb3e516f01e55a50a1442ad49ac7308abdc2ef (patch)
tree55be80d44cb0e066155e4016b99dfbbfb88e497a /abs/core-testing/mythtv/trunk/clean_all.sh
parentd317bb68722dbe0e9f1a7d3eee79bb45045d8ff0 (diff)
downloadlinhes_pkgbuild-19bb3e516f01e55a50a1442ad49ac7308abdc2ef.zip
linhes_pkgbuild-19bb3e516f01e55a50a1442ad49ac7308abdc2ef.tar.gz
linhes_pkgbuild-19bb3e516f01e55a50a1442ad49ac7308abdc2ef.tar.bz2
mythtv-svn: bump to 21022 (H264 fixes)
Diffstat (limited to 'abs/core-testing/mythtv/trunk/clean_all.sh')
-rwxr-xr-xabs/core-testing/mythtv/trunk/clean_all.sh22
1 files changed, 22 insertions, 0 deletions
diff --git a/abs/core-testing/mythtv/trunk/clean_all.sh b/abs/core-testing/mythtv/trunk/clean_all.sh
new file mode 100755
index 0000000..1ebdc43
--- /dev/null
+++ b/abs/core-testing/mythtv/trunk/clean_all.sh
@@ -0,0 +1,22 @@
+#!/bin/sh
+
+buildlist=('mythtv' 'mytharchive' 'mythbrowser' 'mythflix' 'mythgallery' 'mythgame' 'mythmovies' 'mythmusic' '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!"
+