summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2014-06-30 18:38:54 -0400
committerGravatar Joey Hess <joey@kitenet.net>2014-06-30 18:39:30 -0400
commitd937d6ee0b36882f9475d29ceb1e7319134e4aaf (patch)
treea99efa4b9087e21932079950c5e02d37c820f63d /Makefile
parent360dee6ef3a3668b2ab705ec0135721602773722 (diff)
sort tags
vim complains if file is not sorted
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 2c51d2644..2c76dcd70 100644
--- a/Makefile
+++ b/Makefile
@@ -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.