* 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.
This commit is contained in:
Pavel Roskin 2000-09-23 07:08:18 +00:00
parent c69627ffdd
commit 49a540ba42
2 changed files with 10 additions and 2 deletions

View File

@ -1,3 +1,10 @@
2000-09-23 Pavel Roskin <proski@gnu.org>
* 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 <proski@gnu.org>
* POTFILES.in: Removed src/fixhlp.c

View File

@ -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 \