[Debian-tex-commits] SVN tex-common commit + diffs: r1873 - in tex-common/trunk: debian scripts

Norbert Preining preining-guest at costa.debian.org
Sun Oct 22 15:40:02 UTC 2006


Author: preining-guest
Date: 2006-10-22 15:40:01 +0000 (Sun, 22 Oct 2006)
New Revision: 1873

Modified:
   tex-common/trunk/debian/changelog
   tex-common/trunk/scripts/dh_installtex
Log:
tex-common: fix format extraction regexp in dh_installtex [preining]


Modified: tex-common/trunk/debian/changelog
===================================================================
--- tex-common/trunk/debian/changelog	2006-10-22 15:32:50 UTC (rev 1872)
+++ tex-common/trunk/debian/changelog	2006-10-22 15:40:01 UTC (rev 1873)
@@ -1,3 +1,9 @@
+tex-common (0.36) UNRELEASED; urgency=low
+
+  * fix format extraction regexp in dh_installtex [preining]
+
+ -- Norbert Preining <preining at debian.org>  Sun, 22 Oct 2006 17:37:24 +0200
+
 tex-common (0.35) unstable; urgency=low
 
   * Use local variables in debianize-updmap, so that the right file for

Modified: tex-common/trunk/scripts/dh_installtex
===================================================================
--- tex-common/trunk/scripts/dh_installtex	2006-10-22 15:32:50 UTC (rev 1872)
+++ tex-common/trunk/scripts/dh_installtex	2006-10-22 15:40:01 UTC (rev 1873)
@@ -231,7 +231,7 @@
 
 sub extract_format {
 	my ($line) = @_;
-	if ($line =~ m/^[^\w#]*(\w+)*/) {
+	if ($line =~ m/^[^\w#]*([\w-]+)*/) {
 		return $1;
 	}
 }




More information about the Debian-tex-commits mailing list