From 0f720362b1c18a3824e52961e9f825d8b8cb33db Mon Sep 17 00:00:00 2001 From: Sean Whitton Date: Mon, 28 Dec 2015 16:52:11 +0000 Subject: Makefile: move redirection to silence xargs When hothasktags not installed. Signed-off-by: Sean Whitton (cherry picked from commit a23c8b42b3e901da05e5de26ba9a2a4207d839f2) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8b713878..733e718c 100644 --- a/Makefile +++ b/Makefile @@ -37,7 +37,7 @@ clean: # duplicate tags with Propellor.Property. removed from the start, as we # often import qualified by just the module base name. tags: - find . | grep -v /.git/ | grep -v /tmp/ | grep -v /dist/ | grep -v /doc/ | egrep '\.hs$$' | xargs hothasktags | perl -ne 'print; s/Propellor\.Property\.//; print' | sort > tags 2>/dev/null || true + find . | grep -v /.git/ | grep -v /tmp/ | grep -v /dist/ | grep -v /doc/ | egrep '\.hs$$' | xargs hothasktags 2>/dev/null | perl -ne 'print; s/Propellor\.Property\.//; print' | sort > tags || true dist/setup-config: propellor.cabal @if [ "$(CABAL)" = ./Setup ]; then ghc --make Setup; fi -- cgit v1.2.3