Hi,

Recently I have experienced some issues with cmake FindBISON script.
Cmake expects the --version output to begin with "bison (GNU Bison) <version>". For pt_BR, the translator has used "GNU bison" (lowercase b) and thus the regex in cmake could no longer correctly extract the version number.

This patch corrects the issue.

Kassick.
--- bison-2.4.1.dfsg/po/pt_BR.po	2011-07-28 17:53:48.057701795 -0300
+++ bison-2.4.1.dfsg.old/po/pt_BR.po	2008-12-11 20:06:53.000000000 -0200
@@ -233,7 +233,7 @@
 #: src/getargs.c:339
 #, c-format
 msgid "bison (GNU Bison) %s"
-msgstr "bison (GNU Bison) %s"
+msgstr "bison (GNU bison) %s"
 
 #: src/getargs.c:341
 msgid "Written by Robert Corbett and Richard Stallman.\n"

Reply via email to