summaryrefslogtreecommitdiff
path: root/messages
diff options
context:
space:
mode:
authorbwarsaw2001-05-22 05:20:15 +0000
committerbwarsaw2001-05-22 05:20:15 +0000
commit1dd624c4fa224df2e873e7f8e6cb4d96be23970b (patch)
tree40049c18c74a3bedd8727abd9667e9c39c8051bb /messages
parentfe79c385dc6fa2eb137dfb1a72f8e95dae643435 (diff)
downloadmailman-1dd624c4fa224df2e873e7f8e6cb4d96be23970b.tar.gz
mailman-1dd624c4fa224df2e873e7f8e6cb4d96be23970b.tar.zst
mailman-1dd624c4fa224df2e873e7f8e6cb4d96be23970b.zip
LANGUAGES: remove `rot'
message.files: Change `find' calls to 1) find files relative to only the Mailman subdirectory; 2) Omit .#* files from the bin directory.
Diffstat (limited to 'messages')
-rw-r--r--messages/Makefile.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/messages/Makefile.in b/messages/Makefile.in
index c02259b1e..b38086be3 100644
--- a/messages/Makefile.in
+++ b/messages/Makefile.in
@@ -43,7 +43,7 @@ MSGFMT= msgfmt
MSGMERGE= msgmerge
# CVS available languages
-LANGUAGES= es rot
+LANGUAGES= es
LANGDIRS= $(LANGUAGES:%=messages/%/LC_MESSAGES)
# Global pygettext extracted po template file
POTFILE= mailman.pot
@@ -112,8 +112,8 @@ distclean:
message.files: FORCE
@echo "Calculating input files for pygettext"
touch $@
- (cd ..; find -path '*pythonlib' -prune -o -name '*.py' -print >> messages/$@)
- (cd ..; grep -r -l '^#! /usr/bin/env python' `find bin` >> messages/$@)
+ (cd ..; find Mailman -path '*pythonlib' -prune -o -name '*.py' -print >> messages/$@)
+ (cd ..; grep -d skip -l '^#! /usr/bin/env python' `find bin -name ".#*" -prune -o -print` >> messages/$@)
$(POTFILE): message.files
@echo "Running pygettext; this might take a while"