Package: po-debconf
Version: 1.0.10
Severity: important
Tags: patch

Without options, debconf-updatepo generates Report-Msgid-Bugs-To lines
that look like this:

  Report-Msgid-Bugs-To: Source: [EMAIL PROTECTED]

This is due to a buggy sed expression. Please apply the following patch.

--- debconf-updatepo.orig       2007-10-31 13:12:42.000000000 +0000
+++ debconf-updatepo    2007-11-12 10:07:54.000000000 +0000
@@ -115,7 +115,7 @@
 if [ -z "$skip_pot" ]; then
         if [ -z "$msgid_bugs_address" ] && [ -r "../control" ]; then
                 source_package=$(LC_ALL=C grep "^Source:" ../control |
-                                          sed -e 1q -e 's/.*:\s\+//')
+                                          sed -e 's/.*:\s\+//' -e 1q)
                 if [ -n "$source_package" ]; then
                         msgid_bugs_address="[EMAIL PROTECTED]"
                         export XGETTEXT_ARGS

Thanks,

-- 
Colin Watson                                       [EMAIL PROTECTED]



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to