[Webkit-unassigned] [Bug 30292] New: Inconsistent handling of gettext domain can cause compile failure

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sun Oct 11 18:51:28 PDT 2009


https://bugs.webkit.org/show_bug.cgi?id=30292

           Summary: Inconsistent handling of gettext domain can cause
                    compile failure
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Macintosh
               URL: http://permalink.gmane.org/gmane.os.apple.fink.general
                    /28859
        OS/Version: Mac OS X 10.6
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: WebKit Gtk
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: dmacks at netspace.org


Several makefiles hardcode the gettext domain in the .pot filename
("webkit.pot") but other parts of the makefiles (and the code that accesses
them) use a variable. The following is using webkit-1.1.10 release, but the
code that triggers the problem appears the same in svn trunk. All support pkgs
supplied via fink at the level of GNOME2.26, and gettext 0.14.5:

1. Edit configure

-GETTEXT_PACKAGE=$PACKAGE
+GETTEXT_PACKAGE="${PACKAGE}-1.0.2"

2. Build the package

./configure --prefix=/sw        --disable-dependency-tracking \
--enable-gtk-doc \
--disable-video \
--disable-jit \
PKG_CONFIG_PATH="/sw/lib/fontconfig2/lib/pkgconfig:$PKG_CONFIG_PATH" \
XT_CFLAGS=" " XT_LIBS=-lXt
mkdir DerivedSources
make
make -C WebKit/gtk/docs

Build failure (reported by several users on multiple OSX versions):

/sw/bin/msgmerge --update de.po webkit-1.0.2.pot
/sw/bin/msgmerge: error while opening "webkit-1.0.2.pot" for reading: No
such file or directory
make[1]: *** [WebKit/gtk/po/de.po] Error 1
make: *** [all] Error 2


The bug is that the make recipe for the "webkit-1.0.2.pot" target generates
"webkit.pot":

/sw/bin/xgettext --default-domain=webkit-1.0.2 --directory=. \
--add-comments=TRANSLATORS:  \
--files-from=./WebKit/gtk/po/POTFILES \
--copyright-holder='' \
--msgid-bugs-address="$msgid_bugs_address" \
--keyword=_ --keyword=N_ -o ./WebKit/gtk/po/webkit.pot

The -o flag is hardcoded instead of using the $DOMAIN variable.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list