Releng: tiny script clean-up
diff --git a/releng/build-scripts/build/otdt_prerequisites-hipp.sh b/releng/build-scripts/build/otdt_prerequisites-hipp.sh
index 9b52516..f6ecaaa 100644
--- a/releng/build-scripts/build/otdt_prerequisites-hipp.sh
+++ b/releng/build-scripts/build/otdt_prerequisites-hipp.sh
@@ -36,9 +36,6 @@
 # Base dir for finding previous platform build:
 DROPS4=/home/data/httpd/download.eclipse.org/eclipse/downloads/drops4
 
-# EXPORT: mail address to receive notification about build result (currently only build failures):
-OT_RECIPIENT="nobody@nowhere.net"
-
 # Configure ANT:
 ANT_HOME=/shared/common/apache-ant-1.7.1/
 PATH=${ANT_HOME}/bin:${PATH}
diff --git a/releng/build-scripts/build/otdt_runtests-hipp.sh b/releng/build-scripts/build/otdt_runtests-hipp.sh
index b1bbdad..8cf4760 100755
--- a/releng/build-scripts/build/otdt_runtests-hipp.sh
+++ b/releng/build-scripts/build/otdt_runtests-hipp.sh
@@ -18,7 +18,6 @@
 # TEST_TMPDIR           for temp test files
 # OT_TESTSUITE_DIR      root directory for building and testing
 # METADATA				directory for metadata from previous builds
-# OT_RECIPIENT          mail address for failure messages
 # SDK_QUALIFIER			build qualifier of the base eclipse SDK
 # ECLIPSE_SDK_TGZ       archive file of the base eclipse SDK build (full path)
 # ECLIPSE_TESTLIB_ZIP   archive file of the eclipse test framework (full path)
@@ -53,20 +52,6 @@
         echo "  -nobuild:   don't build OTDT, directly invoke testing."
 }
 
-notifyTestRunFailure()
-{
-	echo "Running the test-cases failed!"; 
-	local subject="OT Testsuite: Failure!"
-	local message="See the attached log to fix the problems."
-	local cmdLogfiles="-a ${OT_SUITE_LOG}-tail.gz"
-	
-	grep -q "\[java\] BUILD FAILED" "$OT_SUITE_LOG" && { subject="OT Testsuite: Compile/Build Failure!"; }
-	tail -1000 "$OT_SUITE_LOG" | gzip -f - > "${OT_SUITE_LOG}-tail.gz"
-	echo -e "$message" | mutt -s "$subject" $cmdLogfiles $OT_RECIPIENT
-	cleanup
-	exit 1;
-}
-
 cleanup()
 {
 	echo "cleanup(): Currently no cleanup is configured"