Index: Jenkinsfile
===================================================================
--- Jenkinsfile	(revision c78e410f005f69c41e24b61cf1f798a90b015dee)
+++ Jenkinsfile	(revision 1da4ead6a8ec6069a9c9bdfba7cb35619306a0b5)
@@ -11,10 +11,13 @@
 stage 'Build'
 node ('master'){
-	//configure the conpilation
 	try {
+		//configure the conpilation
+		//Don't remove outputs for the clean and configure unless errors are present
 		sh 'make clean > /dev/null'
 		sh 'CC=gcc-4.9 CXX=g++-4.9 ./configure > /dev/null'
 		sh 'make -j 8'
 		email("SUCCESS", false)
+
+	//something happen, this build is a failure
 	} catch (Exception e) {
 		email("FAILURE", true)
