From 2eee02fe7f8092b6f12684f1bdaa790e7d69c08c Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 6 Dec 2010 14:34:23 +1000 Subject: [PATCH] pkg-deps.sh: exclude older syb-0.1 for ghc < 7 --- pkg-deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg-deps.sh b/pkg-deps.sh index 5d5a83e..626c123 100755 --- a/pkg-deps.sh +++ b/pkg-deps.sh @@ -39,7 +39,7 @@ echo "}" >> pkgs.dot cp -p pkgs.dot pkgs.dot.orig # ignore library packages provided by ghc (except ghc-6.12) -GHC_PKGS="array base-4 base-3 bin-package-db $(ghc-pkg --simple-output list bytestring) Cabal containers directory dph extensible-exceptions filepath ffi ghc-binary ghc-prim haskell98 hpc integer-gmp old-locale old-time pretty process random rts template-haskell time unix Win32" +GHC_PKGS="array base-4 base-3 bin-package-db $(ghc-pkg --simple-output list bytestring) Cabal containers directory dph extensible-exceptions filepath ffi ghc-binary ghc-prim haskell98 hpc integer-gmp old-locale old-time pretty process random rts syb-0.1 template-haskell time unix Win32" for i in $GHC_PKGS; do sed -i -e /$i/d pkgs.dot; done which tred &>/dev/null || { echo "graphviz is needed to generate graph" ; exit 1 ; }