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

r1413 - in glibc-package/trunk/debian: . rules.d



Author: aurel32
Date: 2006-04-11 17:54:59 +0000 (Tue, 11 Apr 2006)
New Revision: 1413

Modified:
   glibc-package/trunk/debian/changelog
   glibc-package/trunk/debian/rules.d/build.mk
Log:
Use 'date --rfc-2822' instead of 'date' to have a standard output
Add the bug number



Modified: glibc-package/trunk/debian/changelog
===================================================================
--- glibc-package/trunk/debian/changelog	2006-04-11 13:52:36 UTC (rev 1412)
+++ glibc-package/trunk/debian/changelog	2006-04-11 17:54:59 UTC (rev 1413)
@@ -11,7 +11,7 @@
   * Add m68k/local-mathinline_h.diff (fix bits/mathinline.h), by Roger Leigh.
     (Closes: #340871)
   * Add beginning and end timestamps to both the build logs and the
-    testsuite logs.
+    testsuite logs.  (Closes: #155690)
   * debian/sysdeps/sparc.mk: build sparcv9b optimized libraries with 
     -mtune=ultrasparc3.
 

Modified: glibc-package/trunk/debian/rules.d/build.mk
===================================================================
--- glibc-package/trunk/debian/rules.d/build.mk	2006-04-11 13:52:36 UTC (rev 1412)
+++ glibc-package/trunk/debian/rules.d/build.mk	2006-04-11 17:54:59 UTC (rev 1413)
@@ -57,7 +57,7 @@
 	    echo "No.  Forcing cross-compile by setting build to $$configure_build."; \
 	  fi; \
 	fi; \
-	$(call logme, -a $(log_build), echo -n "Build started: " ; date ; echo "---------------")
+	$(call logme, -a $(log_build), echo -n "Build started: " ; date --rfc-2822 ; echo "---------------")
 	$(call logme, -a $(log_build), \
 		cd $(DEB_BUILDDIR) && \
 		CC="$(call xx,CC)" \
@@ -74,7 +74,7 @@
 $(stamp)build_%: $(stamp)configure_%
 	@echo Building $(curpass)
 	$(call logme, -a $(log_build), $(MAKE) -C $(DEB_BUILDDIR) -j $(NJOBS))
-	$(call logme, -a $(log_build), echo "---------------" ; echo -n "Build ended: " ; date)
+	$(call logme, -a $(log_build), echo "---------------" ; echo -n "Build ended: " ; date --rfc-2822)
 	touch $@
 
 $(patsubst %,check_%,$(GLIBC_PASSES)) :: check_% : $(stamp)check_%
@@ -91,12 +91,12 @@
 	else \
 	  echo Testing $(curpass); \
 	  echo -n "Testsuite started: " | tee -a $(log_test); \
-	  date | tee -a $(log_test); \
+	  date --rfc-2822 | tee -a $(log_test); \
 	  echo "--------------" | tee -a $(log_test); \
 	  $(MAKE) -C $(DEB_BUILDDIR) -j $(NJOBS) -k check 2>&1 | tee -a $(log_test); \
 	  echo "--------------" | tee -a $(log_test); \
 	  echo -n "Testsuite ended: " | tee -a $(log_test); \
-	  date | tee -a $(log_test); \
+	  date --rfc-2822 | tee -a $(log_test); \
 	fi
 	touch $@
 



Reply to: