summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2013-03-11 18:13:18 -0400
committerGravatar Joey Hess <joey@kitenet.net>2013-03-11 18:13:18 -0400
commit70aefcb7f8ac30f237414a77d98bba9a791f4a70 (patch)
treef6b9149fc3095339cfaa33d6a46e5d02b248fb72
parent767920bdf3d79630f53da193bfc3a90747b0242e (diff)
better bg tags generation
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 74c96d4a2..ced1e2c9a 100644
--- a/Makefile
+++ b/Makefile
@@ -18,7 +18,7 @@ build: $(all)
fast: dist/caballog
@$$(grep 'ghc --make' dist/caballog | head -n 1)
@ln -sf dist/build/git-annex/git-annex git-annex
- @$(MAKE) tags &
+ @$(MAKE) tags >/dev/null 2>&1
dist/caballog: git-annex.cabal
$(CABAL) configure -f"-Production" -O0
@@ -59,7 +59,7 @@ test: fast
# hothasktags chokes on some tempolate haskell etc, so ignore errors
tags:
- @find . | grep -v /.git/ | grep -v /doc/ | egrep '\.hs$$' | xargs hothasktags > tags 2>/dev/null
+ find . | grep -v /.git/ | grep -v /doc/ | egrep '\.hs$$' | xargs hothasktags > tags 2>/dev/null
# If ikiwiki is available, build static html docs suitable for being
# shipped in the software package.