~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to po/Makefile.in.in

  • Committer: Monty Taylor
  • Date: 2011-02-15 03:57:13 UTC
  • mfrom: (2168.1.7 build)
  • Revision ID: mordred@inaugust.com-20110215035713-w41jt6izr5r8e8lq
Merge Haildb fixes from Stewart and various small build cleanups from Monty.

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