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

r1639 - in glibc-package/tags: . 2.3.6-15/debian 2.3.6-15/debian/rules.d



Author: aurel32
Date: 2006-06-08 09:41:21 +0000 (Thu, 08 Jun 2006)
New Revision: 1639

Added:
   glibc-package/tags/2.3.6-15/
Modified:
   glibc-package/tags/2.3.6-15/debian/changelog
   glibc-package/tags/2.3.6-15/debian/rules.d/build.mk
Log:
Tagging 2.3.6-15



Copied: glibc-package/tags/2.3.6-15 (from rev 1634, glibc-package/tags/2.3.6-14)

Modified: glibc-package/tags/2.3.6-15/debian/changelog
===================================================================
--- glibc-package/tags/2.3.6-14/debian/changelog	2006-06-07 22:58:07 UTC (rev 1634)
+++ glibc-package/tags/2.3.6-15/debian/changelog	2006-06-08 09:41:21 UTC (rev 1639)
@@ -1,3 +1,10 @@
+glibc (2.3.6-15) unstable; urgency=low
+ 
+  * debian/rules.d/build.mk: generate a test log file even if the testsuite
+    is disabled, too make debhelper 5 happy.
+
+ -- Aurelien Jarno <aurel32@debian.org>  Thu,  8 Jun 2006 08:02:47 +0200
+
 glibc (2.3.6-14) unstable; urgency=low
 
   [ Aurelien Jarno ]

Modified: glibc-package/tags/2.3.6-15/debian/rules.d/build.mk
===================================================================
--- glibc-package/tags/2.3.6-14/debian/rules.d/build.mk	2006-06-07 22:58:07 UTC (rev 1634)
+++ glibc-package/tags/2.3.6-15/debian/rules.d/build.mk	2006-06-08 09:41:21 UTC (rev 1639)
@@ -81,13 +81,17 @@
 $(stamp)check_%: $(stamp)build_%
 	if [ -n "$(findstring nocheck,$(DEB_BUILD_OPTIONS))" ]; then \
 	  echo "DEB_BUILD_OPTIONS contains nocheck, skipping tests."; \
+	  echo "Tests have been disabled via DEB_BUILD_OPTIONS." > $(log_test) ; \
 	elif [ $(call xx,configure_build) != $(call xx,configure_target) ] && \
 	     ! $(DEB_BUILDDIR)/libc.so >/dev/null 2>&1 ; then \
 	  echo "Cross compiling, skipping tests."; \
+	  echo "Flavour cross-compiled, tests have been skipped." > $(log_test) ; \
 	elif ! $(call kernel_check,$(call xx,MIN_KERNEL_SUPPORTED)); then \
 	  echo "Kernel too old, skipping tests."; \
+	  echo "Kernel too old, tests have been skipped." > $(log_test) ; \
 	elif [ $(call xx,RUN_TESTSUITE) != "yes" ]; then \
 	  echo "Testsuite disabled for $(curpass), skipping tests."; \
+	  echo "Tests have been disabled." > $(log_test) ; \
 	else \
 	  echo Testing $(curpass); \
 	  echo -n "Testsuite started: " | tee -a $(log_test); \



Reply to: