diff options
author | Rob Austein <sra@hactrn.net> | 2013-09-10 22:39:30 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2013-09-10 22:39:30 +0000 |
commit | 7b41abe9e48317e46fe2e25c9573a21862dc9ad5 (patch) | |
tree | fca162145d7d4ce3e27a80b6bd15eb416ea2b25f /rpkid | |
parent | be3b5ac980911f1eb87823493bbeebbe73b855ca (diff) |
Skip build/ subdirectory when constructing TAGS files.
svn path=/trunk/; revision=5490
Diffstat (limited to 'rpkid')
-rw-r--r-- | rpkid/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpkid/Makefile.in b/rpkid/Makefile.in index 8bb3c328..8da7e61f 100644 --- a/rpkid/Makefile.in +++ b/rpkid/Makefile.in @@ -117,7 +117,7 @@ test all-tests parse-test profile yamltest yamlconf:: all cd tests; $(MAKE) $@ tags: Makefile - find . -type f \( -name '*.py' -o -name '*.sql' -o -name '*.rnc' -o -name '*.py.in' \) ! -name relaxng.py ! -name sql_schemas.py | etags - + find . -type d -name build -prune -o -type f \( -name '*.py' -o -name '*.sql' -o -name '*.rnc' -o -name '*.py.in' \) ! -name relaxng.py ! -name sql_schemas.py -print | etags - lint: pylint --rcfile ${abs_top_srcdir}/buildtools/pylint.rc rpki/*.py rpki/irdb/*.py *.py tests/*.py |