diff options
author | Joey Hess <joey@kitenet.net> | 2014-06-30 18:38:54 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2014-06-30 18:39:30 -0400 |
commit | d937d6ee0b36882f9475d29ceb1e7319134e4aaf (patch) | |
tree | a99efa4b9087e21932079950c5e02d37c820f63d /Makefile | |
parent | 360dee6ef3a3668b2ab705ec0135721602773722 (diff) |
sort tags
vim complains if file is not sorted
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -60,7 +60,7 @@ retest: git-annex # hothasktags chokes on some template haskell etc, so ignore errors tags: 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 # shipped in the software package. |