~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to po/Makefile.in.in

  • Committer: Monty Taylor
  • Date: 2011-02-14 20:32:29 UTC
  • mto: (2168.1.3 build)
  • mto: This revision was merged to the branch mainline in revision 2169.
  • Revision ID: mordred@inaugust.com-20110214203229-vpjp2e7y021i0nyc
Let's not vomit on tarball builds on missing po mentions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
XGETTEXT = @XGETTEXT@
50
50
INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
51
51
INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
 
52
INTLTOOL_WARNINGS = @INTLTOOL_WARNINGS@
52
53
MSGMERGE = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) XGETTEXT=$(XGETTEXT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --dist
53
54
GENPOT   = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) XGETTEXT=$(XGETTEXT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --pot
54
55
 
144
145
check: all $(GETTEXT_PACKAGE).pot
145
146
        rm -f missing notexist
146
147
        srcdir=$(srcdir) $(INTLTOOL_UPDATE) -m
147
 
        if [ -r missing -o -r notexist ]; then \
 
148
        if [ -r missing -o -r notexist -a "x${INTLTOOL_WARNINGS}" = "xyes"]; then \
148
149
          exit 1; \
149
150
        fi
150
151