r4150 - trunk



Author: timj
Date: 2006-12-13 20:57:51 -0500 (Wed, 13 Dec 2006)
New Revision: 4150

Modified:
   trunk/ChangeLog
   trunk/Makefile.decl
Log:
Thu Dec 14 02:37:04 2006  Tim Janik  <timj gtk org>                                                                                                           
                                                                                                                                                              
        * Makefile.decl (report): fix report rule so that failure exit                                                                                        
        status is not swallowed by tee(1).                                                                                                                    
                                                                                                                                                              



Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2006-12-13 23:01:04 UTC (rev 4149)
+++ trunk/ChangeLog	2006-12-14 01:57:51 UTC (rev 4150)
@@ -1,3 +1,8 @@
+Thu Dec 14 02:37:04 2006  Tim Janik  <timj gtk org>
+
+	* Makefile.decl (report): fix report rule so that failure exit
+	status is not swallowed by tee(1).
+
 Mon Dec 11 00:51:36 2006  Tim Janik  <timj gtk org>
 
 	* tests/perftest.cc:

Modified: trunk/Makefile.decl
===================================================================
--- trunk/Makefile.decl	2006-12-13 23:01:04 UTC (rev 4149)
+++ trunk/Makefile.decl	2006-12-14 01:57:51 UTC (rev 4150)
@@ -89,11 +89,11 @@
 # === report ===
 .PHONY: report
 report: all
-	@export REPORTFILE="$(REPORTFILE)"			\
-	&& [ -z "$$REPORTFILE" ]				\
-	&& export REPORTFILE="$(shell pwd)/report.out" ;	\
-	( true 							\
-	  && echo -n "#TREPSTART: " && date --iso-8601=seconds	\
-	  && $(MAKE) $(AM_MAKEFLAGS) check slowcheck perf	\
-	  && echo -n "#TREPDONE: "  && date --iso-8601=seconds	\
-	) 2>&1 | tee "$$REPORTFILE"
+	@export REPORTFILE="$(REPORTFILE)"					\
+	&& [ -z "$$REPORTFILE" ]						\
+	&& export REPORTFILE="$(shell pwd)/report.out" 				\
+	&& echo -n "#TREPSTART: " 			> "$$REPORTFILE"	\
+	&& date --iso-8601=seconds			>>"$$REPORTFILE"	\
+	&& $(MAKE) $(AM_MAKEFLAGS) check slowcheck perf	>>"$$REPORTFILE" 2>&1	\
+	&& echo -n "#TREPDONE: "			>>"$$REPORTFILE"	\
+	&& date --iso-8601=seconds			>>"$$REPORTFILE"




[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]