From bd9f6234743d74fa769f0b32ff3e35dfd44c1798 Mon Sep 17 00:00:00 2001 From: simonmar Date: Fri, 23 Feb 2001 09:48:14 +0000 Subject: [PATCH] [project @ 2001-02-23 09:48:14 by simonmar] don't need to derive Show on the Package datatype now. --- ghc/driver/Package.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghc/driver/Package.hs b/ghc/driver/Package.hs index d842d12..dac54f2 100644 --- a/ghc/driver/Package.hs +++ b/ghc/driver/Package.hs @@ -15,7 +15,7 @@ data Package = Package { extra_cc_opts :: [String], extra_ld_opts :: [String] } - deriving (Read, Show) + deriving Read listPkgs :: [Package] -> String listPkgs pkgs = render (fsep (punctuate comma (map (text . name) pkgs))) -- 1.7.10.4