From cb29e273b0f86b6e54fd6844ebfae2028bd39ac2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Sun, 4 Jan 2015 08:39:29 +0900 Subject: [PATCH] intl: Add missing libintl.h dependency from pluralx.$lo plural(x).c depends on libintl.h if ENABLE_NLS, but the makefile didn't have corresponding dependency for pluralx.c, because d2d04ba forgot to add it. Fix by using $(PLURAL_OBJECT) for the dependency rule too. * Makefile.in ($(PLURAL_OBJECT)): Depend on libintl.h. --- gettext-runtime/intl/ChangeLog | 9 +++++++++ gettext-runtime/intl/Makefile.in | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/gettext-runtime/intl/ChangeLog b/gettext-runtime/intl/ChangeLog index 3c30810bb..d5a14179b 100644 --- a/gettext-runtime/intl/ChangeLog +++ b/gettext-runtime/intl/ChangeLog @@ -1,3 +1,12 @@ +2015-01-04 Václav Slavík (tiny change) + + intl: Add missing libintl.h dependency from pluralx.$lo + plural(x).c depends on libintl.h if ENABLE_NLS, but the makefile + didn't have corresponding dependency for pluralx.c, because + d2d04ba forgot to add it. Fix by using $(PLURAL_OBJECT) for the + dependency rule too. + * Makefile.in ($(PLURAL_OBJECT)): Depend on libintl.h. + 2014-12-24 Daiki Ueno * gettext 0.19.4 released. diff --git a/gettext-runtime/intl/Makefile.in b/gettext-runtime/intl/Makefile.in index 2acfb2e59..d6694171d 100644 --- a/gettext-runtime/intl/Makefile.in +++ b/gettext-runtime/intl/Makefile.in @@ -605,7 +605,7 @@ printf.$lo: $(srcdir)/printf-args.h $(srcdir)/printf-args.c $(srcdir)/printf-par # A bison-2.1 generated plural.c includes if ENABLE_NLS. PLURAL_DEPS_yes = libintl.h PLURAL_DEPS_no = -plural.$lo: $(PLURAL_DEPS_@USE_INCLUDED_LIBINTL@) +$(PLURAL_OBJECT): $(PLURAL_DEPS_@USE_INCLUDED_LIBINTL@) tags: TAGS -- 2.47.2