sort tags
vim complains if file is not sorted
This commit is contained in:
parent
47d74e3809
commit
71bb76ee75
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -60,7 +60,7 @@ retest: git-annex
|
||||||
# hothasktags chokes on some template haskell etc, so ignore errors
|
# hothasktags chokes on some template haskell etc, so ignore errors
|
||||||
tags:
|
tags:
|
||||||
grep -v '/\*' dist/build/autogen/cabal_macros.h > dist/build/autogen/cabal_macros.h.munged
|
grep -v '/\*' dist/build/autogen/cabal_macros.h > dist/build/autogen/cabal_macros.h.munged
|
||||||
(for f in $$(find . | grep -v /.git/ | grep -v /tmp/ | grep -v /dist/ | grep -v /doc/ | egrep '\.hs$$'); do hothasktags -c --include=dist/build/autogen/cabal_macros.h.munged $$f; done) > tags 2>/dev/null
|
(for f in $$(find . | grep -v /.git/ | grep -v /tmp/ | grep -v /dist/ | grep -v /doc/ | egrep '\.hs$$'); do hothasktags -c --include=dist/build/autogen/cabal_macros.h.munged $$f; done) 2>/dev/null | sort > tags
|
||||||
|
|
||||||
# If ikiwiki is available, build static html docs suitable for being
|
# If ikiwiki is available, build static html docs suitable for being
|
||||||
# shipped in the software package.
|
# shipped in the software package.
|
||||||
|
|
Loading…
Reference in a new issue