~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to po/Makefile.in.in

  • Committer: Mark Atwood
  • Date: 2011-08-12 04:08:33 UTC
  • mfrom: (2385.2.17 refactor5)
  • Revision ID: me@mark.atwood.name-20110812040833-u6j85nc6ahuc0dtz
merge lp:~olafvdspek/drizzle/refactor5

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