GNOME Bugzilla – Bug 171330
The rule for POTFILES doesn't remove intltool tags
Last modified: 2005-07-21 15:07:26 UTC
The rule for POTFILES contains 's/^\[.*\] +//' this sed command has several flaws: 1) "+" is not part of BRE, so the regex matches only lines containing literal plus sign! 2) we may not require space after ']', think of [encoding:...] tags. 3) '\[' is not part of POSIX BRE's, though it works in most environments. Issue (3) also appears in intltool.m4.
Created attachment 39125 [details] [review] patch This patches fixes all the mentioned issues.
*** Bug 171328 has been marked as a duplicate of this bug. ***
I'm running into this problem with epiphany and evince all the time. I've tested the patch (attachment 39125 [details] [review]) and it fixes the problem. Can it be checked in please? Thanks!
Go ahead and commit. Thanks for the patch, and sorry about the delay.
Committed. Thank for review.