SVN devscripts commit: r576 - trunk/debian

Adam D. Barratt adam-guest at alioth.debian.org
Tue Mar 20 17:08:39 CET 2007


Author: adam-guest
Date: 2007-03-20 16:08:38 +0000 (Tue, 20 Mar 2007)
New Revision: 576

Modified:
   trunk/debian/changelog
   trunk/debian/rules
Log:
Fix check for unwanted debug information to account for bts now being in scripts/


Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog	2007-03-19 23:58:43 UTC (rev 575)
+++ trunk/debian/changelog	2007-03-20 16:08:38 UTC (rev 576)
@@ -3,12 +3,14 @@
   [ Adam D. Barratt ]
   * scripts/Makefile: Override make's default .sh rule so that the package
     version string actually gets written to the scripts
+  * debian/rules: Fix check for unwanted debug information to account for
+    bts now being in scripts/
   * Fix encoding of French manpages (Closes: #415240)
   * bts
     + Update prunecache() for maintainer / status mboxes and version graphs
     + Simplify version graph handling code (should now handle all graphs
       correctly)
-  * Documentation fixes, based on suggestions from Adeodato Simó
+  * Documentation fixes, based on suggestions from Adeodato Simó
     + debian/control: update description of debcommit
     + README: replace reference to bazaar with bzr
     + nmudiff.1: add missing unbold after an option
@@ -19,7 +21,7 @@
   * Adding myself to Uploaders
   * tagpending should not use pend-excl=done (Closes: #415309)
 
- -- Adam D. Barratt <debian-bts at adam-barratt.org.uk>  Mon, 19 Mar 2007 23:50:29 +0000
+ -- Adam D. Barratt <debian-bts at adam-barratt.org.uk>  Tue, 20 Mar 2007 16:04:45 +0000
 
 devscripts (2.10.1) unstable; urgency=low
 

Modified: trunk/debian/rules
===================================================================
--- trunk/debian/rules	2007-03-19 23:58:43 UTC (rev 575)
+++ trunk/debian/rules	2007-03-20 16:08:38 UTC (rev 576)
@@ -15,7 +15,11 @@
 test: test-stamp
 test-stamp:
 	# debugging info in bts?
-	if grep -q '\$$debug *= *1' bts.pl; then exit 1; else exit 0; fi
+	if grep -q '\$$debug *= *1' scripts/bts.pl; then
+		exit 1
+	else
+		exit 0
+	fi
 	touch test-stamp
 
 build-indep: build-stamp-indep




More information about the Devscripts-devel mailing list