diff options
author | tkikuchi <> | 2004-10-02 07:44:41 +0000 |
---|---|---|
committer | tkikuchi <> | 2004-10-02 07:44:41 +0000 |
commit | 7449d8f61c76fa5920730f0155e6076956d55d7f (patch) | |
tree | acec840a6fdb18c97dd45c66afc362e31b8b0978 /messages | |
parent | cd2f1ba1b945512c887470cd8806c206a7038e0f (diff) | |
download | mailman2-7449d8f61c76fa5920730f0155e6076956d55d7f.tar.gz mailman2-7449d8f61c76fa5920730f0155e6076956d55d7f.tar.xz mailman2-7449d8f61c76fa5920730f0155e6076956d55d7f.zip |
Closing:
[ 799166 ] install-sh doesn't support multiple sources
[ 946554 ] configure does not check for gettext/msgmerge
Diffstat (limited to 'messages')
-rw-r--r-- | messages/Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/messages/Makefile.in b/messages/Makefile.in index f02e0ee3..6f8937c3 100644 --- a/messages/Makefile.in +++ b/messages/Makefile.in @@ -107,7 +107,8 @@ doinstall: mofiles po=$(srcdir)/$$d/LC_MESSAGES/mailman.po; \ mo=$(srcdir)/$$d/LC_MESSAGES/mailman.mo; \ dir=$(DESTDIR)$(prefix)/messages/$$d/LC_MESSAGES; \ - $(INSTALL) -m $(FILEMODE) $$po $$mo $$dir; \ + $(INSTALL) -m $(FILEMODE) $$po $$dir; \ + $(INSTALL) -m $(FILEMODE) $$mo $$dir; \ done mofiles: $(MOFILES) @@ -143,7 +144,7 @@ potfile: marked.files docstring.files # .pot file %/LC_MESSAGES/mailman.po: mailman.pot @echo "Merging new template file with existing translations" - $(MSGMERGE) -U $@ mailman.pot + $(MSGMERGE) -U $@ mailman.pot || touch $@ FORCE: |