From: Dan F. <dfa...@us...> - 2009-10-14 05:58:49
|
Update of /cvsroot/libexif/m4m In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv24459/m4m Modified Files: gp-gettext-hack.m4 Log Message: Fixed an inverted logic condition that prevented the bug report address from appearing in the .pot file Index: gp-gettext-hack.m4 =================================================================== RCS file: /cvsroot/libexif/m4m/gp-gettext-hack.m4,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -d -r1.4 -r1.5 --- gp-gettext-hack.m4 26 Jun 2007 01:57:08 -0000 1.4 +++ gp-gettext-hack.m4 14 Oct 2009 05:58:35 -0000 1.5 @@ -31,6 +31,8 @@ AC_SUBST([GETTEXT_PACKAGE]) sed_cmds="s|^DOMAIN.*|DOMAIN = ${GETTEXT_PACKAGE}|" m4_if([$2],[],[],[sed_cmds="${sed_cmds};s|^COPYRIGHT_HOLDER.*|COPYRIGHT_HOLDER = $2|"]) m4_ifval([$3],[ +sed_mb="$3" +],[ if test -n "$PACKAGE_BUGREPORT"; then sed_mb="${PACKAGE_BUGREPORT}" else @@ -41,8 +43,6 @@ else *** ]) fi -],[ -sed_mb="$3" ]) sed_cmds="${sed_cmds};s|^MSGID_BUGS_ADDRESS.*|MSGID_BUGS_ADDRESS = ${sed_mb}|" # Not so sure whether this hack is all *that* evil... |