From: Daiki Ueno Date: Fri, 2 May 2014 01:38:43 +0000 (+0900) Subject: Makefile.in.in: Rename DIST_DEPENDS_ON_POT to DIST_DEPENDS_ON_UPDATE_PO X-Git-Tag: v0.19~67 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d8aff3f5df48d690722f1d054e6955de457c3b3e;p=thirdparty%2Fgettext.git Makefile.in.in: Rename DIST_DEPENDS_ON_POT to DIST_DEPENDS_ON_UPDATE_PO --- diff --git a/gettext-runtime/po/ChangeLog b/gettext-runtime/po/ChangeLog index 859d50d06..aacde852e 100644 --- a/gettext-runtime/po/ChangeLog +++ b/gettext-runtime/po/ChangeLog @@ -5,8 +5,8 @@ Makevars, after calling autopoint. * Makevars (PO_DEPENDS_ON_POT): Rename from POFILESDEPS and turn it into a yes/no option. - (DIST_DEPENDS_ON_POT): Rename from DISTFILESDEPS and turn it into - a yes/no option. + (DIST_DEPENDS_ON_UPDATE_PO): Rename from DISTFILESDEPS and turn it + into a yes/no option. 2014-05-01 Daiki Ueno diff --git a/gettext-runtime/po/Makefile.in.in b/gettext-runtime/po/Makefile.in.in index fe16101c4..36f63dc1f 100644 --- a/gettext-runtime/po/Makefile.in.in +++ b/gettext-runtime/po/Makefile.in.in @@ -85,7 +85,7 @@ POFILESDEPS = $(POFILESDEPS_$(PO_DEPENDS_ON_POT)) DISTFILESDEPS_ = update-po DISTFILESDEPS_yes = $(DISTFILESDEPS_) DISTFILESDEPS_no = -DISTFILESDEPS = $(DISTFILESDEPS_$(DIST_DEPENDS_ON_POT)) +DISTFILESDEPS = $(DISTFILESDEPS_$(DIST_DEPENDS_ON_UPDATE_PO)) # Makevars gets inserted here. (Don't remove this line!) diff --git a/gettext-runtime/po/Makevars b/gettext-runtime/po/Makevars index c562005c5..10754abc9 100644 --- a/gettext-runtime/po/Makevars +++ b/gettext-runtime/po/Makevars @@ -68,7 +68,8 @@ MSGMERGE_OPTIONS = # program ignores timestamps. PO_DEPENDS_ON_POT = yes -# This tells whether or not to forcibly regenerate $(DOMAIN).pot and -# PO files on "make dist". Possible values are "yes" and "no". Set -# this to no if the POT file and PO files are maintained externally. -DIST_DEPENDS_ON_POT = yes +# This tells whether or not to forcibly update $(DOMAIN).pot and +# regenerate PO files on "make dist". Possible values are "yes" and +# "no". Set this to no if the POT file and PO files are maintained +# externally. +DIST_DEPENDS_ON_UPDATE_PO = yes