From 5a73f108480a0b443c74f93fafa2f5495e788643 Mon Sep 17 00:00:00 2001 From: Simon Marlow Date: Wed, 2 Jun 2010 08:22:33 +0000 Subject: [PATCH] Add the global package DB to ghc --info (#4103) --- compiler/main/DynFlags.hs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/compiler/main/DynFlags.hs b/compiler/main/DynFlags.hs index 86590db..1f83d29 100644 --- a/compiler/main/DynFlags.hs +++ b/compiler/main/DynFlags.hs @@ -2191,6 +2191,7 @@ compilerInfo = [("Project name", String cProjectName), ("RTS ways", String cGhcRTSWays), ("Leading underscore", String cLeadingUnderscore), ("Debug on", String (show debugIsOn)), - ("LibDir", FromDynFlags topDir) + ("LibDir", FromDynFlags topDir), + ("Global Package DB", FromDynFlags systemPackageConfig) ] -- 1.7.10.4