From 49a540ba4210eb4ec5d684908b6b028bb464274a Mon Sep 17 00:00:00 2001 From: Pavel Roskin Date: Sat, 23 Sep 2000 07:08:18 +0000 Subject: [PATCH] * Makefile.in.in (distdir): Changed to ensure that *.gmo are created after *.po are updated on "make dist". (distclean): Undone changes from 2000-08-15 - "make distclean" shouldn't touch $(srcdir) - it's not Automake's way. --- po/ChangeLog | 7 +++++++ po/Makefile.in.in | 5 +++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/po/ChangeLog b/po/ChangeLog index c16ed4bdd..9baa6b881 100644 --- a/po/ChangeLog +++ b/po/ChangeLog @@ -1,3 +1,10 @@ +2000-09-23 Pavel Roskin + + * Makefile.in.in (distdir): Changed to ensure that *.gmo are + created after *.po are updated on "make dist". + (distclean): Undone changes from 2000-08-15 - "make distclean" + shouldn't touch $(srcdir) - it's not Automake's way. + 2000-09-22 Pavel Roskin * POTFILES.in: Removed src/fixhlp.c diff --git a/po/Makefile.in.in b/po/Makefile.in.in index 82df30d24..b45407987 100644 --- a/po/Makefile.in.in +++ b/po/Makefile.in.in @@ -183,7 +183,7 @@ mostlyclean: clean: mostlyclean distclean: clean - rm -f Makefile Makefile.in POTFILES *.mo $(srcdir)/*.gmo *.msg *.cat *.cat.m + rm -f Makefile Makefile.in POTFILES *.mo *.msg *.cat *.cat.m maintainer-clean: distclean @echo "This command is intended for maintainers to use;" @@ -193,7 +193,8 @@ maintainer-clean: distclean distdir = ../$(PACKAGE)-$(VERSION)/$(subdir) # Only maintainers want to run update-po -dist distdir: $(DISTFILES) @MAINT@ update-po +dist distdir: @MAINT@ update-po + $(MAKE) $(DISTFILES) dists="$(DISTFILES)"; \ for file in $$dists; do \ ln $(srcdir)/$$file $(distdir) 2> /dev/null \