]> granicus.if.org Git - postgresql/commitdiff
Add missing dependency and fix thinko.
authorPeter Eisentraut <peter_e@gmx.net>
Sat, 30 Jun 2001 21:58:06 +0000 (21:58 +0000)
committerPeter Eisentraut <peter_e@gmx.net>
Sat, 30 Jun 2001 21:58:06 +0000 (21:58 +0000)
src/nls-global.mk

index d97df26941081d5bb8304ddd8600c64ea8c83dc1..a29036027c06ccc21d70c9ea088f4db9b04708ef 100644 (file)
@@ -1,4 +1,4 @@
-# $Header: /cvsroot/pgsql/src/nls-global.mk,v 1.1 2001/06/02 18:25:17 petere Exp $
+# $Header: /cvsroot/pgsql/src/nls-global.mk,v 1.2 2001/06/30 21:58:06 petere Exp $
 
 # Common rules for Native Language Support (NLS)
 #
@@ -35,7 +35,9 @@ endif
 PO_FILES = $(addsuffix .po, $(LANGUAGES))
 MO_FILES = $(addsuffix .mo, $(LANGUAGES))
 
-XGETTEXT += --foreign-user
+ifdef XGETTEXT
+XGETTEXT += --foreign-user -ctranslator
+endif
 
 
 all-po: $(MO_FILES)
@@ -48,10 +50,10 @@ distprep: $(srcdir)/$(CATALOG_NAME).pot
 ifdef XGETTEXT
 ifeq ($(word 1,$(GETTEXT_FILES)),+)
 $(srcdir)/$(CATALOG_NAME).pot: $(word 2, $(GETTEXT_FILES))
-       $(XGETTEXT) -D $(srcdir) -ctranslator -n $(addprefix -k, $(GETTEXT_TRIGGERS)) -f $<
+       $(XGETTEXT) -D $(srcdir) -n $(addprefix -k, $(GETTEXT_TRIGGERS)) -f $<
 else
 $(srcdir)/$(CATALOG_NAME).pot: $(GETTEXT_FILES)
-       $(XGETTEXT) -ctranslator -n $(addprefix -k, $(GETTEXT_TRIGGERS)) $^
+       $(XGETTEXT) -n $(addprefix -k, $(GETTEXT_TRIGGERS)) $^
 endif
        mv messages.po $@
 else # not XGETTEXT
@@ -75,7 +77,7 @@ clean-po:
        rm -f $(MO_FILES)
        @rm -f $(addsuffix .po.old, $(AVAIL_LANGUAGES))
 
-maintainer-clean-po:
+maintainer-clean-po: clean-po
        rm -f $(srcdir)/$(CATALOG_NAME).pot