summaryrefslogtreecommitdiff
path: root/MakeTAGS
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2005-05-08 16:46:56 +0000
committerUlrich Drepper <drepper@redhat.com>2005-05-08 16:46:56 +0000
commit4bf8665d5e1cfb8b28c1307b5bda5f84730caf34 (patch)
tree11956ae86a4f217b82bfcf4e35d0f3df2e157d9d /MakeTAGS
parent6f8ac8ec0d54796bee1ff27d9ec58f0596615e1d (diff)
* MakeTAGS: Make xgettext not look into test cases.
Diffstat (limited to 'MakeTAGS')
-rw-r--r--MakeTAGS5
1 files changed, 3 insertions, 2 deletions
diff --git a/MakeTAGS b/MakeTAGS
index 89be8669d2..1ffdd64000 100644
--- a/MakeTAGS
+++ b/MakeTAGS
@@ -146,8 +146,9 @@ endif
define extract
@rm -f $@.new
$(XGETTEXT) --keyword=_ --keyword=N_ --add-comments=TRANS --sort-by-file \
- --omit-header -E -n -d --flag=error:3:c-format \
- $(XGETTEXTFLAGS-$(@F)) > $@.new $(filter-out $(objpfx)distinfo,$^)
+ --omit-header -E -n -d - --flag=error:3:c-format \
+ $(XGETTEXTFLAGS-$(@F)) > $@.new \
+ $(filter-out tst-%,$(filter-out $(objpfx)distinfo,$^)) /dev/null
mv -f $@.new $@
endef