tech-pkg archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Going to update lang/ghc7 to 7.10.3



Now that freeze is over (thanks gdt@), I'm going to update lang/ghc7 to
7.10.3 with attached patches.

GHC 7.10.3 is the last version that can bootstrap with existing 7.6.3
bootkits. I built 7.10.3 bootkit for NetBSD/amd64 and uploaded it to
LOCAL_PORTS, but for other platforms I currently have no suitable
machines to build one. If any developers can build them it's highly
appreciated.

The base version has been bumped from 4.6 to 4.8, so it's highly likely
that updating it will break some packages depending on GHC. I will take
care of that later.
? TODO.pho
Index: DESCR
===================================================================
RCS file: /cvsroot/pkgsrc/lang/ghc7/DESCR,v
retrieving revision 1.1
diff -u -r1.1 DESCR
--- DESCR	12 Dec 2013 12:47:17 -0000	1.1
+++ DESCR	28 Dec 2019 17:32:49 -0000
@@ -8,3 +8,8 @@
 type-system extensions, exceptions, and so on. GHC comes with a
 generational garbage collector, a space and time profiler, and a
 comprehensive set of libraries.
+
+This package provides the 7.10.x release series, which is the last
+version that can bootstrap with 7.6.x. It will probably be removed
+once we make a separate package for GHC 8.0.x and get enough bootstrap
+kits for it.
Index: Makefile
===================================================================
RCS file: /cvsroot/pkgsrc/lang/ghc7/Makefile,v
retrieving revision 1.36
diff -u -r1.36 Makefile
--- Makefile	1 Nov 2019 06:10:23 -0000	1.36
+++ Makefile	28 Dec 2019 17:32:49 -0000
@@ -2,31 +2,32 @@
 # -----------------------------------------------------------------------------
 # Package metadata
 #
-DISTNAME=	ghc-7.6.3-src
+DISTNAME=	ghc-7.10.3-src
 PKGNAME=	${DISTNAME:S/-src$//}
-PKGREVISION=	14
 CATEGORIES=	lang
-MASTER_SITES=	https://www.haskell.org/ghc/dist/${PKGVERSION_NOREV}/
-EXTRACT_SUFX=	.tar.bz2
+MASTER_SITES=	https://downloads.haskell.org/~ghc/${PKGVERSION_NOREV}/
+EXTRACT_SUFX=	.tar.xz
 
 MAINTAINER=	pho%cielonegro.org@localhost
 HOMEPAGE=	https://www.haskell.org/ghc/
-COMMENT=	Compiler for the functional language Haskell
+COMMENT=	Compiler for the functional language Haskell - 7.10 Release Series
 LICENSE=	modified-bsd
 
+# TODO: We should be using the alternatives framework.
+CONFLICTS+=	ghc-[0-9]*
+
 # GHC requires GHC to build itself. Formerly we could work around this
 # bootstrapping problem by creating a special archive containing C
 # sources compiled from Haskell sources, but that's no longer
 # possible. So we have to prepare stripped-down binaries sufficient to
 # bootstrap compilers for each platforms. If you want to build them
-# yourself, follow an instruction in the ./TODO file.
+# yourself, follow instructions in ./bootstrap.mk
 BROKEN_EXCEPT_ON_PLATFORM+= \
 	Darwin-*-powerpc \
 	FreeBSD-*-i386 \
-	Linux-*-x86_64 \
-	NetBSD-*-i386 \
 	NetBSD-*-x86_64 \
-	SunOS-5.11-*
+	SunOS-*-i386 \
+	SunOS-*-x86_64
 
 
 # -----------------------------------------------------------------------------
@@ -42,31 +43,39 @@
 # -----------------------------------------------------------------------------
 # Tools
 #
+# The runtime dependency on perl is due to the evil splitter
+# (lib/${PKGNAME_NOREV}/ghc-split).
 USE_TOOLS+=			autoconf gmake gzip perl:run
 GNU_CONFIGURE=			yes
 USE_GNU_CONFIGURE_HOST=		no
 USE_LIBTOOL=			yes
 
-CONFIGURE_ARGS+= \
+CONFIGURE_ARGS.common= \
 	--with-gcc=${CC:Q} \
+	--with-curses-includes=${BUILDLINK_PREFIX.curses:Q}/${BUILDLINK_INCDIRS.curses:Q} \
+	--with-curses-libraries=${BUILDLINK_PREFIX.curses:Q}/${BUILDLINK_LIBDIRS.curses:Q} \
 	--with-gmp-includes=${BUILDLINK_PREFIX.gmp:Q}/${BUILDLINK_INCDIRS.gmp:Q} \
 	--with-gmp-libraries=${BUILDLINK_PREFIX.gmp:Q}/${BUILDLINK_LIBDIRS.gmp:Q} \
 	--with-iconv-includes=${BUILDLINK_PREFIX.iconv:Q}/${BUILDLINK_INCDIRS.iconv:Q} \
-	--with-iconv-libraries=${BUILDLINK_PREFIX.iconv:Q}/${BUILDLINK_LIBDIRS.iconv:Q}
+	--with-iconv-libraries=${BUILDLINK_PREFIX.iconv:Q}/${BUILDLINK_LIBDIRS.iconv:Q} \
+	--with-system-libffi \
+	--with-ffi-includes=${BUILDLINK_PREFIX.libffi:Q}/${BUILDLINK_INCDIRS.libffi:Q} \
+	--with-ffi-libraries=${BUILDLINK_PREFIX.libffi:Q}/${BUILDLINK_LIBDIRS.libffi:Q}
+
+CONFIGURE_ARGS+= ${CONFIGURE_ARGS.common}
 
 CONFIGURE_ENV+= \
 	ac_cv_path_fp_prog_ar=${AR:Q} \
 	PerlCmd=${PERL5:Q}
 
-# CFLAGS and LDFLAGS are currently not honored by "./configure". Since
-# LDFLAGS contains rpath flags it's very important to force GHC to
-# honor it. Otherwise neither GHC itself nor executables it produces
-# will have any rpaths so users will have to put "${PREFIX}/lib" into
-# their "/etc/ld-elf.so.conf". See
+# LDFLAGS is currently not honored by "./configure". Since LDFLAGS
+# contains rpath flags it's very important to force GHC to honor
+# it. Otherwise neither GHC itself nor executables it produces will
+# have any rpaths so users will have to put "${PREFIX}/lib" into their
+# "/etc/ld-elf.so.conf". See
 # http://hackage.haskell.org/trac/ghc/ticket/2933
 .for stage in 0 1 2
 CONFIGURE_ENV+= \
-	CONF_CC_OPTS_STAGE${stage}=${CFLAGS:Q} \
 	CONF_GCC_LINKER_OPTS_STAGE${stage}=${LDFLAGS:Q}
 # Note that CONF_LD_LINKER_OPTS_STAGE{0,1,2} are only used for
 # creating static GHCi libraries (HS*.o). Setting them to ${LDFLAGS}
@@ -77,10 +86,19 @@
 # the buildlink.
 .endfor
 
-NOT_PAX_MPROTECT_SAFE+=	lib/${PKGNAME_NOREV}/ghc
-NOT_PAX_MPROTECT_SAFE+=	lib/${PKGNAME_NOREV}/ghc-pkg
-NOT_PAX_ASLR_SAFE+=	lib/${PKGNAME_NOREV}/ghc
-NOT_PAX_ASLR_SAFE+=	lib/${PKGNAME_NOREV}/ghc-pkg
+# The runtime system of GHC (rts) tends to conflict with PaX MPROTECT
+# because it needs to generate various kinds of code at run time. The
+# RTS linker, whose job is to load *static* objects at run time,
+# doesn't play nice with ASLR either. This means most executables
+# produced by GHC need them to be disabled. Perhaps we should patch
+# rts/sm/Storage.c so that it uses ffi_closure_alloc(3) on every
+# platform, not just Linux, and also drop support for static library
+# loading and switch to dynamic libraries entirely.
+.for f in ghc ghc-pkg haddock hpc hsc2hs runghc
+NOT_PAX_MPROTECT_SAFE+=	lib/${PKGNAME_NOREV}/bin/${f}
+NOT_PAX_ASLR_SAFE+=	lib/${PKGNAME_NOREV}/bin/${f}
+.endfor
+
 
 # -----------------------------------------------------------------------------
 # Build hooks
@@ -92,34 +110,16 @@
 	${RUN} cd ${WRKSRC:Q}/libraries/base        && autoconf
 	${RUN} cd ${WRKSRC:Q}/libraries/integer-gmp && autoconf
 
-
 # Define the target "pre-configure" and non-standard "bootstrap".
 .include "../../lang/ghc7/bootstrap.mk"
 
 # Our pre-configure phase installs a bindist of bootstrapping compiler
 # directly into TOOLS_DIR so that ./configure can find it.
 
-
 # Here we generate mk/build.mk dynamically.
 post-configure:
 	${RUN} ${RM} -f ${WRKSRC:Q}/mk/build.mk
 
-# See https://ghc.haskell.org/trac/ghc/ticket/10096
-	${RUN} ${ECHO} "libraries/terminfo_CONFIGURE_OPTS += \
-		--configure-option=--with-curses-includes=${BUILDLINK_PREFIX.curses:Q}/${BUILDLINK_INCDIRS.curses:Q} \
-		--configure-option=--with-curses-libraries=${BUILDLINK_PREFIX.curses:Q}/${BUILDLINK_LIBDIRS.curses:Q}" \
-		>> ${WRKSRC:Q}/mk/build.mk
-
-# The ghc compiler does normally split the generated asm files into small
-# parts before sending them to gcc, to enable the linker to eliminate
-# unused parts.  This does however not play nice with the pkgsrc
-# framework, and the result is that the build takes more than 5 times
-# as long than when the files are not split.  See
-#    http://mail-index.netbsd.org/tech-pkg/2006/07/30/0005.html
-# for a description of the problem.
-# Disable file splitting until pkgsrc gets improved.
-	${RUN} ${ECHO} "SplitObjs         = NO" >> ${WRKSRC:Q}/mk/build.mk
-
 # If there is HsColour in the PATH, GHC's build system tries to use it
 # without even checking if it really works. That's not what we
 # appreciate.
@@ -145,18 +145,13 @@
 # -----------------------------------------------------------------------------
 # PLIST
 #
-# We can't use static PLIST because the package installs some files
-# whose names are randomly generated, namely
-# lib/${PKGNAME}/package.conf.d/*.conf
-#
-PRINT_PLIST_AWK+=	/lib\/${PKGNAME_NOREV}\/package\.conf\.d/ { next; }
-
-# If we were lucky we could just use "PLIST_TYPE = dynamic", but the
-# feature has seemingly bitrotted.
-.include "../../mk/bsd.prefs.mk"
+# We can't use static PLIST because the package installs files with a
+# hashed name. And "PLIST_TYPE = dynamic" appears to be broken atm
+# [2019-12-27; pho].
 GENERATE_PLIST+= \
-	cd ${DESTDIR}${PREFIX} && \
-		${FIND} lib/${PKGNAME_NOREV}/package.conf.d -xdev -newer ${_COOKIE.extract} \! -type d -print | ${SORT} -d;
+	cd ${DESTDIR:Q}${PREFIX:Q} && \
+		${FIND} * \( -type f -o -type l \) | ${SORT};
+
 
 # -----------------------------------------------------------------------------
 # Sanity checks
@@ -165,26 +160,25 @@
 # There is an unused script which don't pass the portability test.
 CHECK_PORTABILITY_SKIP+=	distrib/prep-bin-dist-mingw
 
-# Dynamic Haskell libraries currently have no rpaths to any dependent
-# Haskell libraries so we must skip shlibs check for them. Note that
-# the situation seems to be changed in GHC 7.8.1 so we should
-# readdress this later. See
-# https://ghc.haskell.org/trac/ghc/ticket/8266 (slightly off-topic but
-# pho@ found no description for the -fuse-rpath flag.)
-.if !empty(PKGNAME:Mghc-7.6.*)
+# Dynamically linked Haskell executables and libraries have rpaths to
+# dependent Haskell libraries, but the problem is that they are
+# specified with $ORIGIN, which isn't currently supported by
+# ../../mk/check/check-shlibs-elf.awk.
 CHECK_SHLIBS_SKIP+=		*/libHS*-ghc${PKGVERSION_NOREV}.*
-.endif
+.for f in ghc ghc-pkg haddock hpc hsc2hs runghc
+CHECK_SHLIBS_SKIP+=		lib/${PKGNAME_NOREV}/bin/${f}
+.endfor
 
 # ghc57207_0.s: failed to add inputs for merge: Resource temporarily unavailable
-CTF_FILES_SKIP+=		*/libHSghc-7.6.3-ghc7.6.3.so
+CTF_FILES_SKIP+=		*/libHS*-ghc${PKGVERSION_NOREV}.*
 
 # ld: fatal: relocation error ... relocation requires reference symbol
 STRIP_FILES_SKIP+=		lib/${PKGNAME_NOREV}/libHSrts.a
 
+
 # -----------------------------------------------------------------------------
 # Dependencies
 #
-
 BUILD_DEPENDS+=	libxslt-[0-9]*:../../textproc/libxslt
 BUILD_DEPENDS+=	docbook-xsl-[0-9]*:../../textproc/docbook-xsl
 
@@ -196,10 +190,11 @@
 # In a sandboxed build environment, we have to reach over to the
 # installed libraries themselves, since the symlinks compat80 adds
 # to the /usr tree can't be applied.
-MAKE_ENV+=	LD_LIBRARY_PATH=${LOCALBASE}/emul/netbsd/usr/lib
+MAKE_ENV+=	LD_LIBRARY_PATH=${PREFIX:Q}/emul/netbsd/usr/lib
 .endif
 
 .include "../../converters/libiconv/buildlink3.mk"
+.include "../../devel/libffi/buildlink3.mk"
 .include "../../devel/gmp/buildlink3.mk"
 .include "../../mk/curses.buildlink3.mk"
 .include "../../mk/pthread.buildlink3.mk"
Index: PLIST
===================================================================
RCS file: PLIST
diff -N PLIST
--- PLIST	21 May 2014 16:07:59 -0000	1.2
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,5384 +0,0 @@
-@comment $NetBSD: PLIST,v 1.2 2014/05/21 16:07:59 jperkin Exp $
-bin/ghc
-bin/${PKGNAME}
-bin/ghc-pkg
-bin/ghc-pkg-${PKGVERSION}
-bin/ghci
-bin/ghci-${PKGVERSION}
-bin/haddock
-bin/haddock-${PKGNAME}
-bin/hp2ps
-bin/hpc
-bin/hsc2hs
-bin/runghc
-bin/run${PKGNAME}
-bin/runhaskell
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Compat/CopyFile.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Compat/CopyFile.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Compat/CopyFile.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Compat/Exception.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Compat/Exception.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Compat/Exception.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Compat/ReadP.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Compat/ReadP.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Compat/ReadP.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Compat/TempFile.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Compat/TempFile.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Compat/TempFile.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Compiler.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Compiler.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Compiler.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/GetOpt.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/GetOpt.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/GetOpt.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/InstalledPackageInfo.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/InstalledPackageInfo.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/InstalledPackageInfo.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/License.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/License.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/License.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Make.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Make.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Make.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/ModuleName.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/ModuleName.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/ModuleName.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Package.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Package.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Package.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/PackageDescription.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/PackageDescription.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/PackageDescription.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/PackageDescription/Check.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/PackageDescription/Check.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/PackageDescription/Check.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/PackageDescription/Configuration.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/PackageDescription/Configuration.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/PackageDescription/Configuration.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/PackageDescription/Parse.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/PackageDescription/Parse.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/PackageDescription/Parse.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/PackageDescription/PrettyPrint.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/PackageDescription/PrettyPrint.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/PackageDescription/PrettyPrint.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/ParseUtils.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/ParseUtils.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/ParseUtils.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/ReadE.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/ReadE.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/ReadE.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Bench.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Bench.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Bench.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Build.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Build.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Build.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Build/Macros.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Build/Macros.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Build/Macros.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Build/PathsModule.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Build/PathsModule.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Build/PathsModule.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/BuildPaths.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/BuildPaths.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/BuildPaths.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Command.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Command.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Command.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Compiler.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Compiler.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Compiler.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Configure.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Configure.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Configure.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/GHC.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/GHC.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/GHC.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/GHC/IPI641.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/GHC/IPI641.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/GHC/IPI641.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/GHC/IPI642.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/GHC/IPI642.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/GHC/IPI642.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Haddock.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Haddock.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Haddock.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Hpc.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Hpc.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Hpc.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Hugs.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Hugs.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Hugs.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Install.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Install.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Install.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/InstallDirs.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/InstallDirs.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/InstallDirs.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/JHC.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/JHC.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/JHC.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/LHC.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/LHC.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/LHC.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/LocalBuildInfo.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/LocalBuildInfo.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/LocalBuildInfo.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/NHC.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/NHC.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/NHC.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/PackageIndex.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/PackageIndex.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/PackageIndex.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/PreProcess.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/PreProcess.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/PreProcess.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/PreProcess/Unlit.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/PreProcess/Unlit.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/PreProcess/Unlit.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/Ar.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/Ar.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/Ar.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/Builtin.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/Builtin.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/Builtin.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/Db.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/Db.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/Db.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/GHC.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/GHC.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/GHC.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/HcPkg.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/HcPkg.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/HcPkg.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/Hpc.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/Hpc.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/Hpc.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/Ld.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/Ld.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/Ld.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/Run.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/Run.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/Run.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/Script.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/Script.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/Script.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/Types.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/Types.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/Types.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Register.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Register.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Register.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Setup.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Setup.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Setup.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/SrcDist.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/SrcDist.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/SrcDist.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Test.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Test.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Test.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/UHC.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/UHC.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/UHC.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/UserHooks.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/UserHooks.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/UserHooks.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Utils.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Utils.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Utils.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/System.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/System.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/System.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/TestSuite.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/TestSuite.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/TestSuite.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Text.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Text.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Text.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Verbosity.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Verbosity.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Verbosity.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Version.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Version.hi
-lib/${PKGNAME}/Cabal-1.16.0/Distribution/Version.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/HSCabal-1.16.0.o
-lib/${PKGNAME}/Cabal-1.16.0/Language/Haskell/Extension.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Language/Haskell/Extension.hi
-lib/${PKGNAME}/Cabal-1.16.0/Language/Haskell/Extension.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/Paths_Cabal.dyn_hi
-lib/${PKGNAME}/Cabal-1.16.0/Paths_Cabal.hi
-lib/${PKGNAME}/Cabal-1.16.0/Paths_Cabal.p_hi
-lib/${PKGNAME}/Cabal-1.16.0/libHSCabal-1.16.0-ghc${PKGVERSION}.so
-lib/${PKGNAME}/Cabal-1.16.0/libHSCabal-1.16.0.a
-lib/${PKGNAME}/Cabal-1.16.0/libHSCabal-1.16.0_p.a
-lib/${PKGNAME}/array-0.4.0.1/Data/Array.dyn_hi
-lib/${PKGNAME}/array-0.4.0.1/Data/Array.hi
-lib/${PKGNAME}/array-0.4.0.1/Data/Array.p_hi
-lib/${PKGNAME}/array-0.4.0.1/Data/Array/Base.dyn_hi
-lib/${PKGNAME}/array-0.4.0.1/Data/Array/Base.hi
-lib/${PKGNAME}/array-0.4.0.1/Data/Array/Base.p_hi
-lib/${PKGNAME}/array-0.4.0.1/Data/Array/IArray.dyn_hi
-lib/${PKGNAME}/array-0.4.0.1/Data/Array/IArray.hi
-lib/${PKGNAME}/array-0.4.0.1/Data/Array/IArray.p_hi
-lib/${PKGNAME}/array-0.4.0.1/Data/Array/IO.dyn_hi
-lib/${PKGNAME}/array-0.4.0.1/Data/Array/IO.hi
-lib/${PKGNAME}/array-0.4.0.1/Data/Array/IO.p_hi
-lib/${PKGNAME}/array-0.4.0.1/Data/Array/IO/Internals.dyn_hi
-lib/${PKGNAME}/array-0.4.0.1/Data/Array/IO/Internals.hi
-lib/${PKGNAME}/array-0.4.0.1/Data/Array/IO/Internals.p_hi
-lib/${PKGNAME}/array-0.4.0.1/Data/Array/IO/Safe.dyn_hi
-lib/${PKGNAME}/array-0.4.0.1/Data/Array/IO/Safe.hi
-lib/${PKGNAME}/array-0.4.0.1/Data/Array/IO/Safe.p_hi
-lib/${PKGNAME}/array-0.4.0.1/Data/Array/MArray.dyn_hi
-lib/${PKGNAME}/array-0.4.0.1/Data/Array/MArray.hi
-lib/${PKGNAME}/array-0.4.0.1/Data/Array/MArray.p_hi
-lib/${PKGNAME}/array-0.4.0.1/Data/Array/MArray/Safe.dyn_hi
-lib/${PKGNAME}/array-0.4.0.1/Data/Array/MArray/Safe.hi
-lib/${PKGNAME}/array-0.4.0.1/Data/Array/MArray/Safe.p_hi
-lib/${PKGNAME}/array-0.4.0.1/Data/Array/ST.dyn_hi
-lib/${PKGNAME}/array-0.4.0.1/Data/Array/ST.hi
-lib/${PKGNAME}/array-0.4.0.1/Data/Array/ST.p_hi
-lib/${PKGNAME}/array-0.4.0.1/Data/Array/ST/Safe.dyn_hi
-lib/${PKGNAME}/array-0.4.0.1/Data/Array/ST/Safe.hi
-lib/${PKGNAME}/array-0.4.0.1/Data/Array/ST/Safe.p_hi
-lib/${PKGNAME}/array-0.4.0.1/Data/Array/Storable.dyn_hi
-lib/${PKGNAME}/array-0.4.0.1/Data/Array/Storable.hi
-lib/${PKGNAME}/array-0.4.0.1/Data/Array/Storable.p_hi
-lib/${PKGNAME}/array-0.4.0.1/Data/Array/Storable/Internals.dyn_hi
-lib/${PKGNAME}/array-0.4.0.1/Data/Array/Storable/Internals.hi
-lib/${PKGNAME}/array-0.4.0.1/Data/Array/Storable/Internals.p_hi
-lib/${PKGNAME}/array-0.4.0.1/Data/Array/Storable/Safe.dyn_hi
-lib/${PKGNAME}/array-0.4.0.1/Data/Array/Storable/Safe.hi
-lib/${PKGNAME}/array-0.4.0.1/Data/Array/Storable/Safe.p_hi
-lib/${PKGNAME}/array-0.4.0.1/Data/Array/Unboxed.dyn_hi
-lib/${PKGNAME}/array-0.4.0.1/Data/Array/Unboxed.hi
-lib/${PKGNAME}/array-0.4.0.1/Data/Array/Unboxed.p_hi
-lib/${PKGNAME}/array-0.4.0.1/Data/Array/Unsafe.dyn_hi
-lib/${PKGNAME}/array-0.4.0.1/Data/Array/Unsafe.hi
-lib/${PKGNAME}/array-0.4.0.1/Data/Array/Unsafe.p_hi
-lib/${PKGNAME}/array-0.4.0.1/HSarray-0.4.0.1.o
-lib/${PKGNAME}/array-0.4.0.1/libHSarray-0.4.0.1-ghc${PKGVERSION}.so
-lib/${PKGNAME}/array-0.4.0.1/libHSarray-0.4.0.1.a
-lib/${PKGNAME}/array-0.4.0.1/libHSarray-0.4.0.1_p.a
-lib/${PKGNAME}/base-4.6.0.1/Control/Applicative.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Applicative.hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Applicative.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Arrow.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Arrow.hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Arrow.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Category.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Category.hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Category.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Concurrent.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Concurrent.hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Concurrent.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Concurrent/Chan.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Concurrent/Chan.hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Concurrent/Chan.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Concurrent/MVar.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Concurrent/MVar.hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Concurrent/MVar.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Concurrent/QSem.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Concurrent/QSem.hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Concurrent/QSem.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Concurrent/QSemN.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Concurrent/QSemN.hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Concurrent/QSemN.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Concurrent/SampleVar.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Concurrent/SampleVar.hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Concurrent/SampleVar.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Exception.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Exception.hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Exception.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Exception/Base.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Exception/Base.hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Exception/Base.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Monad.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Monad.hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Monad.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Monad/Fix.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Monad/Fix.hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Monad/Fix.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Monad/Instances.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Monad/Instances.hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Monad/Instances.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST.hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST/Imp.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST/Imp.hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST/Imp.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST/Lazy.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST/Lazy.hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST/Lazy.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST/Lazy/Imp.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST/Lazy/Imp.hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST/Lazy/Imp.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST/Lazy/Safe.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST/Lazy/Safe.hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST/Lazy/Safe.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST/Lazy/Unsafe.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST/Lazy/Unsafe.hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST/Lazy/Unsafe.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST/Safe.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST/Safe.hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST/Safe.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST/Strict.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST/Strict.hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST/Strict.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST/Unsafe.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST/Unsafe.hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST/Unsafe.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Monad/Zip.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Monad/Zip.hi
-lib/${PKGNAME}/base-4.6.0.1/Control/Monad/Zip.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Bits.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Bits.hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Bits.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Bool.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Bool.hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Bool.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Char.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Char.hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Char.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Complex.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Complex.hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Complex.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Data.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Data.hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Data.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Dynamic.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Dynamic.hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Dynamic.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Either.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Either.hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Either.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Eq.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Eq.hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Eq.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Fixed.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Fixed.hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Fixed.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Foldable.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Foldable.hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Foldable.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Function.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Function.hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Function.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Functor.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Functor.hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Functor.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/HashTable.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/HashTable.hi
-lib/${PKGNAME}/base-4.6.0.1/Data/HashTable.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/IORef.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/IORef.hi
-lib/${PKGNAME}/base-4.6.0.1/Data/IORef.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Int.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Int.hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Int.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Ix.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Ix.hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Ix.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/List.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/List.hi
-lib/${PKGNAME}/base-4.6.0.1/Data/List.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Maybe.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Maybe.hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Maybe.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Monoid.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Monoid.hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Monoid.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Ord.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Ord.hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Ord.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Ratio.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Ratio.hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Ratio.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/STRef.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/STRef.hi
-lib/${PKGNAME}/base-4.6.0.1/Data/STRef.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/STRef/Lazy.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/STRef/Lazy.hi
-lib/${PKGNAME}/base-4.6.0.1/Data/STRef/Lazy.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/STRef/Strict.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/STRef/Strict.hi
-lib/${PKGNAME}/base-4.6.0.1/Data/STRef/Strict.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/String.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/String.hi
-lib/${PKGNAME}/base-4.6.0.1/Data/String.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Traversable.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Traversable.hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Traversable.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Tuple.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Tuple.hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Tuple.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Typeable.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Typeable.hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Typeable.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Typeable/Internal.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Typeable/Internal.hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Typeable/Internal.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Unique.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Unique.hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Unique.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Version.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Version.hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Version.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Word.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Word.hi
-lib/${PKGNAME}/base-4.6.0.1/Data/Word.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Debug/Trace.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Debug/Trace.hi
-lib/${PKGNAME}/base-4.6.0.1/Debug/Trace.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign.hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/C.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/C.hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/C.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/C/Error.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/C/Error.hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/C/Error.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/C/String.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/C/String.hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/C/String.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/C/Types.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/C/Types.hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/C/Types.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/Concurrent.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/Concurrent.hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/Concurrent.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/ForeignPtr.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/ForeignPtr.hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/ForeignPtr.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/ForeignPtr/Imp.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/ForeignPtr/Imp.hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/ForeignPtr/Imp.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/ForeignPtr/Safe.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/ForeignPtr/Safe.hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/ForeignPtr/Safe.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/ForeignPtr/Unsafe.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/ForeignPtr/Unsafe.hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/ForeignPtr/Unsafe.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/Marshal.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/Marshal.hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/Marshal.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/Marshal/Alloc.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/Marshal/Alloc.hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/Marshal/Alloc.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/Marshal/Array.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/Marshal/Array.hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/Marshal/Array.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/Marshal/Error.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/Marshal/Error.hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/Marshal/Error.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/Marshal/Pool.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/Marshal/Pool.hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/Marshal/Pool.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/Marshal/Safe.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/Marshal/Safe.hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/Marshal/Safe.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/Marshal/Unsafe.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/Marshal/Unsafe.hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/Marshal/Unsafe.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/Marshal/Utils.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/Marshal/Utils.hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/Marshal/Utils.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/Ptr.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/Ptr.hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/Ptr.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/Safe.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/Safe.hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/Safe.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/StablePtr.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/StablePtr.hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/StablePtr.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/Storable.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/Storable.hi
-lib/${PKGNAME}/base-4.6.0.1/Foreign/Storable.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Arr.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Arr.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Arr.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Base.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Base.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Base.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Char.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Char.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Char.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Conc.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Conc.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Conc.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Conc/IO.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Conc/IO.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Conc/IO.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Conc/Signal.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Conc/Signal.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Conc/Signal.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Conc/Sync.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Conc/Sync.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Conc/Sync.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/ConsoleHandler.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/ConsoleHandler.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/ConsoleHandler.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Constants.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Constants.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Constants.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Desugar.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Desugar.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Desugar.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Enum.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Enum.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Enum.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Environment.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Environment.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Environment.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Err.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Err.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Err.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Event.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Event.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Event.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Event/Array.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Event/Array.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Event/Array.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Event/Clock.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Event/Clock.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Event/Clock.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Event/Control.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Event/Control.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Event/Control.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Event/EPoll.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Event/EPoll.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Event/EPoll.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Event/IntMap.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Event/IntMap.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Event/IntMap.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Event/Internal.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Event/Internal.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Event/Internal.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Event/KQueue.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Event/KQueue.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Event/KQueue.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Event/Manager.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Event/Manager.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Event/Manager.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Event/PSQ.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Event/PSQ.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Event/PSQ.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Event/Poll.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Event/Poll.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Event/Poll.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Event/Thread.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Event/Thread.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Event/Thread.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Event/Unique.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Event/Unique.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Event/Unique.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Exception.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Exception.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Exception.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Exts.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Exts.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Exts.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Fingerprint.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Fingerprint.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Fingerprint.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Fingerprint/Type.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Fingerprint/Type.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Fingerprint/Type.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Float.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Float.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Float.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Float/ConversionUtils.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Float/ConversionUtils.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Float/ConversionUtils.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Float/RealFracMethods.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Float/RealFracMethods.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Float/RealFracMethods.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Foreign.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Foreign.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Foreign.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/ForeignPtr.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/ForeignPtr.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/ForeignPtr.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/GHCi.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/GHCi.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/GHCi.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Generics.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Generics.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Generics.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Handle.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Handle.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Handle.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Buffer.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Buffer.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Buffer.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/BufferedIO.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/BufferedIO.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/BufferedIO.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Device.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Device.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Device.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding/CodePage.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding/CodePage.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding/CodePage.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding/Failure.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding/Failure.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding/Failure.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding/Iconv.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding/Iconv.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding/Iconv.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding/Latin1.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding/Latin1.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding/Latin1.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding/Types.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding/Types.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding/Types.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding/UTF16.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding/UTF16.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding/UTF16.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding/UTF32.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding/UTF32.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding/UTF32.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding/UTF8.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding/UTF8.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding/UTF8.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Exception.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Exception.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Exception.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/FD.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/FD.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/FD.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Handle.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Handle.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Handle.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Handle/FD.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Handle/FD.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Handle/FD.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Handle/Internals.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Handle/Internals.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Handle/Internals.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Handle/Text.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Handle/Text.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Handle/Text.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Handle/Types.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Handle/Types.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Handle/Types.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/IOMode.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/IOMode.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IO/IOMode.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IOArray.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IOArray.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IOArray.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IOBase.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IOBase.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IOBase.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IORef.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IORef.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IORef.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IP.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IP.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/IP.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Int.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Int.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Int.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/List.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/List.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/List.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/MVar.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/MVar.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/MVar.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Num.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Num.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Num.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/PArr.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/PArr.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/PArr.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Pack.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Pack.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Pack.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Ptr.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Ptr.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Ptr.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Read.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Read.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Read.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Real.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Real.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Real.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/ST.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/ST.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/ST.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/STRef.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/STRef.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/STRef.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Show.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Show.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Show.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Stable.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Stable.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Stable.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Stack.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Stack.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Stack.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Stats.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Stats.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Stats.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Storable.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Storable.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Storable.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/TopHandler.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/TopHandler.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/TopHandler.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/TypeLits.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/TypeLits.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/TypeLits.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Unicode.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Unicode.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Unicode.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Weak.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Weak.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Weak.p_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Word.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Word.hi
-lib/${PKGNAME}/base-4.6.0.1/GHC/Word.p_hi
-lib/${PKGNAME}/base-4.6.0.1/HSbase-4.6.0.1.o
-lib/${PKGNAME}/base-4.6.0.1/Numeric.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Numeric.hi
-lib/${PKGNAME}/base-4.6.0.1/Numeric.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Prelude.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Prelude.hi
-lib/${PKGNAME}/base-4.6.0.1/Prelude.p_hi
-lib/${PKGNAME}/base-4.6.0.1/System/CPUTime.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/System/CPUTime.hi
-lib/${PKGNAME}/base-4.6.0.1/System/CPUTime.p_hi
-lib/${PKGNAME}/base-4.6.0.1/System/Console/GetOpt.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/System/Console/GetOpt.hi
-lib/${PKGNAME}/base-4.6.0.1/System/Console/GetOpt.p_hi
-lib/${PKGNAME}/base-4.6.0.1/System/Environment.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/System/Environment.hi
-lib/${PKGNAME}/base-4.6.0.1/System/Environment.p_hi
-lib/${PKGNAME}/base-4.6.0.1/System/Environment/ExecutablePath.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/System/Environment/ExecutablePath.hi
-lib/${PKGNAME}/base-4.6.0.1/System/Environment/ExecutablePath.p_hi
-lib/${PKGNAME}/base-4.6.0.1/System/Exit.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/System/Exit.hi
-lib/${PKGNAME}/base-4.6.0.1/System/Exit.p_hi
-lib/${PKGNAME}/base-4.6.0.1/System/IO.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/System/IO.hi
-lib/${PKGNAME}/base-4.6.0.1/System/IO.p_hi
-lib/${PKGNAME}/base-4.6.0.1/System/IO/Error.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/System/IO/Error.hi
-lib/${PKGNAME}/base-4.6.0.1/System/IO/Error.p_hi
-lib/${PKGNAME}/base-4.6.0.1/System/IO/Unsafe.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/System/IO/Unsafe.hi
-lib/${PKGNAME}/base-4.6.0.1/System/IO/Unsafe.p_hi
-lib/${PKGNAME}/base-4.6.0.1/System/Info.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/System/Info.hi
-lib/${PKGNAME}/base-4.6.0.1/System/Info.p_hi
-lib/${PKGNAME}/base-4.6.0.1/System/Mem.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/System/Mem.hi
-lib/${PKGNAME}/base-4.6.0.1/System/Mem.p_hi
-lib/${PKGNAME}/base-4.6.0.1/System/Mem/StableName.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/System/Mem/StableName.hi
-lib/${PKGNAME}/base-4.6.0.1/System/Mem/StableName.p_hi
-lib/${PKGNAME}/base-4.6.0.1/System/Mem/Weak.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/System/Mem/Weak.hi
-lib/${PKGNAME}/base-4.6.0.1/System/Mem/Weak.p_hi
-lib/${PKGNAME}/base-4.6.0.1/System/Posix/Internals.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/System/Posix/Internals.hi
-lib/${PKGNAME}/base-4.6.0.1/System/Posix/Internals.p_hi
-lib/${PKGNAME}/base-4.6.0.1/System/Posix/Types.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/System/Posix/Types.hi
-lib/${PKGNAME}/base-4.6.0.1/System/Posix/Types.p_hi
-lib/${PKGNAME}/base-4.6.0.1/System/Timeout.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/System/Timeout.hi
-lib/${PKGNAME}/base-4.6.0.1/System/Timeout.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Text/ParserCombinators/ReadP.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Text/ParserCombinators/ReadP.hi
-lib/${PKGNAME}/base-4.6.0.1/Text/ParserCombinators/ReadP.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Text/ParserCombinators/ReadPrec.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Text/ParserCombinators/ReadPrec.hi
-lib/${PKGNAME}/base-4.6.0.1/Text/ParserCombinators/ReadPrec.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Text/Printf.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Text/Printf.hi
-lib/${PKGNAME}/base-4.6.0.1/Text/Printf.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Text/Read.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Text/Read.hi
-lib/${PKGNAME}/base-4.6.0.1/Text/Read.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Text/Read/Lex.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Text/Read/Lex.hi
-lib/${PKGNAME}/base-4.6.0.1/Text/Read/Lex.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Text/Show.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Text/Show.hi
-lib/${PKGNAME}/base-4.6.0.1/Text/Show.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Text/Show/Functions.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Text/Show/Functions.hi
-lib/${PKGNAME}/base-4.6.0.1/Text/Show/Functions.p_hi
-lib/${PKGNAME}/base-4.6.0.1/Unsafe/Coerce.dyn_hi
-lib/${PKGNAME}/base-4.6.0.1/Unsafe/Coerce.hi
-lib/${PKGNAME}/base-4.6.0.1/Unsafe/Coerce.p_hi
-lib/${PKGNAME}/base-4.6.0.1/include/EventConfig.h
-lib/${PKGNAME}/base-4.6.0.1/include/HsBase.h
-lib/${PKGNAME}/base-4.6.0.1/include/HsBaseConfig.h
-lib/${PKGNAME}/base-4.6.0.1/include/Typeable.h
-lib/${PKGNAME}/base-4.6.0.1/include/WCsubst.h
-lib/${PKGNAME}/base-4.6.0.1/include/consUtils.h
-lib/${PKGNAME}/base-4.6.0.1/libHSbase-4.6.0.1-ghc${PKGVERSION}.so
-lib/${PKGNAME}/base-4.6.0.1/libHSbase-4.6.0.1.a
-lib/${PKGNAME}/base-4.6.0.1/libHSbase-4.6.0.1_p.a
-lib/${PKGNAME}/bin-package-db-0.0.0.0/Distribution/InstalledPackageInfo/Binary.dyn_hi
-lib/${PKGNAME}/bin-package-db-0.0.0.0/Distribution/InstalledPackageInfo/Binary.hi
-lib/${PKGNAME}/bin-package-db-0.0.0.0/Distribution/InstalledPackageInfo/Binary.p_hi
-lib/${PKGNAME}/bin-package-db-0.0.0.0/HSbin-package-db-0.0.0.0.o
-lib/${PKGNAME}/bin-package-db-0.0.0.0/libHSbin-package-db-0.0.0.0-ghc${PKGVERSION}.so
-lib/${PKGNAME}/bin-package-db-0.0.0.0/libHSbin-package-db-0.0.0.0.a
-lib/${PKGNAME}/bin-package-db-0.0.0.0/libHSbin-package-db-0.0.0.0_p.a
-lib/${PKGNAME}/binary-0.5.1.1/Data/Binary.dyn_hi
-lib/${PKGNAME}/binary-0.5.1.1/Data/Binary.hi
-lib/${PKGNAME}/binary-0.5.1.1/Data/Binary.p_hi
-lib/${PKGNAME}/binary-0.5.1.1/Data/Binary/Builder.dyn_hi
-lib/${PKGNAME}/binary-0.5.1.1/Data/Binary/Builder.hi
-lib/${PKGNAME}/binary-0.5.1.1/Data/Binary/Builder.p_hi
-lib/${PKGNAME}/binary-0.5.1.1/Data/Binary/Builder/Base.dyn_hi
-lib/${PKGNAME}/binary-0.5.1.1/Data/Binary/Builder/Base.hi
-lib/${PKGNAME}/binary-0.5.1.1/Data/Binary/Builder/Base.p_hi
-lib/${PKGNAME}/binary-0.5.1.1/Data/Binary/Builder/Internal.dyn_hi
-lib/${PKGNAME}/binary-0.5.1.1/Data/Binary/Builder/Internal.hi
-lib/${PKGNAME}/binary-0.5.1.1/Data/Binary/Builder/Internal.p_hi
-lib/${PKGNAME}/binary-0.5.1.1/Data/Binary/Get.dyn_hi
-lib/${PKGNAME}/binary-0.5.1.1/Data/Binary/Get.hi
-lib/${PKGNAME}/binary-0.5.1.1/Data/Binary/Get.p_hi
-lib/${PKGNAME}/binary-0.5.1.1/Data/Binary/Put.dyn_hi
-lib/${PKGNAME}/binary-0.5.1.1/Data/Binary/Put.hi
-lib/${PKGNAME}/binary-0.5.1.1/Data/Binary/Put.p_hi
-lib/${PKGNAME}/binary-0.5.1.1/HSbinary-0.5.1.1.o
-lib/${PKGNAME}/binary-0.5.1.1/libHSbinary-0.5.1.1-ghc${PKGVERSION}.so
-lib/${PKGNAME}/binary-0.5.1.1/libHSbinary-0.5.1.1.a
-lib/${PKGNAME}/binary-0.5.1.1/libHSbinary-0.5.1.1_p.a
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString.dyn_hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString.hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString.p_hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Char8.dyn_hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Char8.hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Char8.p_hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Internal.dyn_hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Internal.hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Internal.p_hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy.dyn_hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy.hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy.p_hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder.dyn_hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder.hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder.p_hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/ASCII.dyn_hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/ASCII.hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/ASCII.p_hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/BasicEncoding.dyn_hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/BasicEncoding.hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/BasicEncoding.p_hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/BasicEncoding/ASCII.dyn_hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/BasicEncoding/ASCII.hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/BasicEncoding/ASCII.p_hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/BasicEncoding/Binary.dyn_hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/BasicEncoding/Binary.hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/BasicEncoding/Binary.p_hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/BasicEncoding/Extras.dyn_hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/BasicEncoding/Extras.hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/BasicEncoding/Extras.p_hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/BasicEncoding/Internal.dyn_hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/BasicEncoding/Internal.hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/BasicEncoding/Internal.p_hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/BasicEncoding/Internal/Base16.dyn_hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/BasicEncoding/Internal/Base16.hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/BasicEncoding/Internal/Base16.p_hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/BasicEncoding/Internal/Floating.dyn_hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/BasicEncoding/Internal/Floating.hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/BasicEncoding/Internal/Floating.p_hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/BasicEncoding/Internal/UncheckedShifts.dyn_hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/BasicEncoding/Internal/UncheckedShifts.hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/BasicEncoding/Internal/UncheckedShifts.p_hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/Extras.dyn_hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/Extras.hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/Extras.p_hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/Internal.dyn_hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/Internal.hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/Internal.p_hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Char8.dyn_hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Char8.hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Char8.p_hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Internal.dyn_hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Internal.hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Internal.p_hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Unsafe.dyn_hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Unsafe.hi
-lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Unsafe.p_hi
-lib/${PKGNAME}/bytestring-0.10.0.2/HSbytestring-0.10.0.2.o
-lib/${PKGNAME}/bytestring-0.10.0.2/include/fpstring.h
-lib/${PKGNAME}/bytestring-0.10.0.2/libHSbytestring-0.10.0.2-ghc${PKGVERSION}.so
-lib/${PKGNAME}/bytestring-0.10.0.2/libHSbytestring-0.10.0.2.a
-lib/${PKGNAME}/bytestring-0.10.0.2/libHSbytestring-0.10.0.2_p.a
-lib/${PKGNAME}/containers-0.5.0.0/Data/Graph.dyn_hi
-lib/${PKGNAME}/containers-0.5.0.0/Data/Graph.hi
-lib/${PKGNAME}/containers-0.5.0.0/Data/Graph.p_hi
-lib/${PKGNAME}/containers-0.5.0.0/Data/IntMap.dyn_hi
-lib/${PKGNAME}/containers-0.5.0.0/Data/IntMap.hi
-lib/${PKGNAME}/containers-0.5.0.0/Data/IntMap.p_hi
-lib/${PKGNAME}/containers-0.5.0.0/Data/IntMap/Base.dyn_hi
-lib/${PKGNAME}/containers-0.5.0.0/Data/IntMap/Base.hi
-lib/${PKGNAME}/containers-0.5.0.0/Data/IntMap/Base.p_hi
-lib/${PKGNAME}/containers-0.5.0.0/Data/IntMap/Lazy.dyn_hi
-lib/${PKGNAME}/containers-0.5.0.0/Data/IntMap/Lazy.hi
-lib/${PKGNAME}/containers-0.5.0.0/Data/IntMap/Lazy.p_hi
-lib/${PKGNAME}/containers-0.5.0.0/Data/IntMap/Strict.dyn_hi
-lib/${PKGNAME}/containers-0.5.0.0/Data/IntMap/Strict.hi
-lib/${PKGNAME}/containers-0.5.0.0/Data/IntMap/Strict.p_hi
-lib/${PKGNAME}/containers-0.5.0.0/Data/IntSet.dyn_hi
-lib/${PKGNAME}/containers-0.5.0.0/Data/IntSet.hi
-lib/${PKGNAME}/containers-0.5.0.0/Data/IntSet.p_hi
-lib/${PKGNAME}/containers-0.5.0.0/Data/IntSet/Base.dyn_hi
-lib/${PKGNAME}/containers-0.5.0.0/Data/IntSet/Base.hi
-lib/${PKGNAME}/containers-0.5.0.0/Data/IntSet/Base.p_hi
-lib/${PKGNAME}/containers-0.5.0.0/Data/Map.dyn_hi
-lib/${PKGNAME}/containers-0.5.0.0/Data/Map.hi
-lib/${PKGNAME}/containers-0.5.0.0/Data/Map.p_hi
-lib/${PKGNAME}/containers-0.5.0.0/Data/Map/Base.dyn_hi
-lib/${PKGNAME}/containers-0.5.0.0/Data/Map/Base.hi
-lib/${PKGNAME}/containers-0.5.0.0/Data/Map/Base.p_hi
-lib/${PKGNAME}/containers-0.5.0.0/Data/Map/Lazy.dyn_hi
-lib/${PKGNAME}/containers-0.5.0.0/Data/Map/Lazy.hi
-lib/${PKGNAME}/containers-0.5.0.0/Data/Map/Lazy.p_hi
-lib/${PKGNAME}/containers-0.5.0.0/Data/Map/Strict.dyn_hi
-lib/${PKGNAME}/containers-0.5.0.0/Data/Map/Strict.hi
-lib/${PKGNAME}/containers-0.5.0.0/Data/Map/Strict.p_hi
-lib/${PKGNAME}/containers-0.5.0.0/Data/Sequence.dyn_hi
-lib/${PKGNAME}/containers-0.5.0.0/Data/Sequence.hi
-lib/${PKGNAME}/containers-0.5.0.0/Data/Sequence.p_hi
-lib/${PKGNAME}/containers-0.5.0.0/Data/Set.dyn_hi
-lib/${PKGNAME}/containers-0.5.0.0/Data/Set.hi
-lib/${PKGNAME}/containers-0.5.0.0/Data/Set.p_hi
-lib/${PKGNAME}/containers-0.5.0.0/Data/Set/Base.dyn_hi
-lib/${PKGNAME}/containers-0.5.0.0/Data/Set/Base.hi
-lib/${PKGNAME}/containers-0.5.0.0/Data/Set/Base.p_hi
-lib/${PKGNAME}/containers-0.5.0.0/Data/StrictPair.dyn_hi
-lib/${PKGNAME}/containers-0.5.0.0/Data/StrictPair.hi
-lib/${PKGNAME}/containers-0.5.0.0/Data/StrictPair.p_hi
-lib/${PKGNAME}/containers-0.5.0.0/Data/Tree.dyn_hi
-lib/${PKGNAME}/containers-0.5.0.0/Data/Tree.hi
-lib/${PKGNAME}/containers-0.5.0.0/Data/Tree.p_hi
-lib/${PKGNAME}/containers-0.5.0.0/HScontainers-0.5.0.0.o
-lib/${PKGNAME}/containers-0.5.0.0/libHScontainers-0.5.0.0-ghc${PKGVERSION}.so
-lib/${PKGNAME}/containers-0.5.0.0/libHScontainers-0.5.0.0.a
-lib/${PKGNAME}/containers-0.5.0.0/libHScontainers-0.5.0.0_p.a
-lib/${PKGNAME}/deepseq-1.3.0.1/Control/DeepSeq.dyn_hi
-lib/${PKGNAME}/deepseq-1.3.0.1/Control/DeepSeq.hi
-lib/${PKGNAME}/deepseq-1.3.0.1/Control/DeepSeq.p_hi
-lib/${PKGNAME}/deepseq-1.3.0.1/HSdeepseq-1.3.0.1.o
-lib/${PKGNAME}/deepseq-1.3.0.1/libHSdeepseq-1.3.0.1-ghc${PKGVERSION}.so
-lib/${PKGNAME}/deepseq-1.3.0.1/libHSdeepseq-1.3.0.1.a
-lib/${PKGNAME}/deepseq-1.3.0.1/libHSdeepseq-1.3.0.1_p.a
-lib/${PKGNAME}/directory-1.2.0.1/HSdirectory-1.2.0.1.o
-lib/${PKGNAME}/directory-1.2.0.1/System/Directory.dyn_hi
-lib/${PKGNAME}/directory-1.2.0.1/System/Directory.hi
-lib/${PKGNAME}/directory-1.2.0.1/System/Directory.p_hi
-lib/${PKGNAME}/directory-1.2.0.1/include/HsDirectory.h
-lib/${PKGNAME}/directory-1.2.0.1/include/HsDirectoryConfig.h
-lib/${PKGNAME}/directory-1.2.0.1/libHSdirectory-1.2.0.1-ghc${PKGVERSION}.so
-lib/${PKGNAME}/directory-1.2.0.1/libHSdirectory-1.2.0.1.a
-lib/${PKGNAME}/directory-1.2.0.1/libHSdirectory-1.2.0.1_p.a
-lib/${PKGNAME}/filepath-1.3.0.1/HSfilepath-1.3.0.1.o
-lib/${PKGNAME}/filepath-1.3.0.1/System/FilePath.dyn_hi
-lib/${PKGNAME}/filepath-1.3.0.1/System/FilePath.hi
-lib/${PKGNAME}/filepath-1.3.0.1/System/FilePath.p_hi
-lib/${PKGNAME}/filepath-1.3.0.1/System/FilePath/Posix.dyn_hi
-lib/${PKGNAME}/filepath-1.3.0.1/System/FilePath/Posix.hi
-lib/${PKGNAME}/filepath-1.3.0.1/System/FilePath/Posix.p_hi
-lib/${PKGNAME}/filepath-1.3.0.1/System/FilePath/Windows.dyn_hi
-lib/${PKGNAME}/filepath-1.3.0.1/System/FilePath/Windows.hi
-lib/${PKGNAME}/filepath-1.3.0.1/System/FilePath/Windows.p_hi
-lib/${PKGNAME}/filepath-1.3.0.1/libHSfilepath-1.3.0.1-ghc${PKGVERSION}.so
-lib/${PKGNAME}/filepath-1.3.0.1/libHSfilepath-1.3.0.1.a
-lib/${PKGNAME}/filepath-1.3.0.1/libHSfilepath-1.3.0.1_p.a
-lib/${PKGNAME}/ghc
-lib/${PKGNAME}/${PKGNAME}/Annotations.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Annotations.hi
-lib/${PKGNAME}/${PKGNAME}/Annotations.p_hi
-lib/${PKGNAME}/${PKGNAME}/AsmCodeGen.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/AsmCodeGen.hi
-lib/${PKGNAME}/${PKGNAME}/AsmCodeGen.p_hi
-lib/${PKGNAME}/${PKGNAME}/Avail.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Avail.hi
-lib/${PKGNAME}/${PKGNAME}/Avail.p_hi
-lib/${PKGNAME}/${PKGNAME}/Bag.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Bag.hi
-lib/${PKGNAME}/${PKGNAME}/Bag.p_hi
-lib/${PKGNAME}/${PKGNAME}/BasicTypes.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/BasicTypes.hi
-lib/${PKGNAME}/${PKGNAME}/BasicTypes.p_hi
-lib/${PKGNAME}/${PKGNAME}/BinIface.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/BinIface.hi
-lib/${PKGNAME}/${PKGNAME}/BinIface.p_hi
-lib/${PKGNAME}/${PKGNAME}/Binary.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Binary.hi
-lib/${PKGNAME}/${PKGNAME}/Binary.p_hi
-lib/${PKGNAME}/${PKGNAME}/Bitmap.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Bitmap.hi
-lib/${PKGNAME}/${PKGNAME}/Bitmap.p_hi
-lib/${PKGNAME}/${PKGNAME}/BlockId.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/BlockId.hi
-lib/${PKGNAME}/${PKGNAME}/BlockId.p_hi
-lib/${PKGNAME}/${PKGNAME}/BreakArray.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/BreakArray.hi
-lib/${PKGNAME}/${PKGNAME}/BreakArray.p_hi
-lib/${PKGNAME}/${PKGNAME}/BufWrite.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/BufWrite.hi
-lib/${PKGNAME}/${PKGNAME}/BufWrite.p_hi
-lib/${PKGNAME}/${PKGNAME}/BuildTyCl.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/BuildTyCl.hi
-lib/${PKGNAME}/${PKGNAME}/BuildTyCl.p_hi
-lib/${PKGNAME}/${PKGNAME}/ByteCodeAsm.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/ByteCodeAsm.hi
-lib/${PKGNAME}/${PKGNAME}/ByteCodeAsm.p_hi
-lib/${PKGNAME}/${PKGNAME}/ByteCodeGen.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/ByteCodeGen.hi
-lib/${PKGNAME}/${PKGNAME}/ByteCodeGen.p_hi
-lib/${PKGNAME}/${PKGNAME}/ByteCodeInstr.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/ByteCodeInstr.hi
-lib/${PKGNAME}/${PKGNAME}/ByteCodeInstr.p_hi
-lib/${PKGNAME}/${PKGNAME}/ByteCodeItbls.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/ByteCodeItbls.hi
-lib/${PKGNAME}/${PKGNAME}/ByteCodeItbls.p_hi
-lib/${PKGNAME}/${PKGNAME}/ByteCodeLink.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/ByteCodeLink.hi
-lib/${PKGNAME}/${PKGNAME}/ByteCodeLink.p_hi
-lib/${PKGNAME}/${PKGNAME}/CLabel.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CLabel.hi
-lib/${PKGNAME}/${PKGNAME}/CLabel.p_hi
-lib/${PKGNAME}/${PKGNAME}/CPrim.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CPrim.hi
-lib/${PKGNAME}/${PKGNAME}/CPrim.p_hi
-lib/${PKGNAME}/${PKGNAME}/CSE.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CSE.hi
-lib/${PKGNAME}/${PKGNAME}/CSE.p_hi
-lib/${PKGNAME}/${PKGNAME}/CgBindery.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CgBindery.hi
-lib/${PKGNAME}/${PKGNAME}/CgBindery.p_hi
-lib/${PKGNAME}/${PKGNAME}/CgCallConv.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CgCallConv.hi
-lib/${PKGNAME}/${PKGNAME}/CgCallConv.p_hi
-lib/${PKGNAME}/${PKGNAME}/CgCase.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CgCase.hi
-lib/${PKGNAME}/${PKGNAME}/CgCase.p_hi
-lib/${PKGNAME}/${PKGNAME}/CgClosure.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CgClosure.hi
-lib/${PKGNAME}/${PKGNAME}/CgClosure.p_hi
-lib/${PKGNAME}/${PKGNAME}/CgCon.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CgCon.hi
-lib/${PKGNAME}/${PKGNAME}/CgCon.p_hi
-lib/${PKGNAME}/${PKGNAME}/CgExpr.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CgExpr.hi
-lib/${PKGNAME}/${PKGNAME}/CgExpr.p_hi
-lib/${PKGNAME}/${PKGNAME}/CgExtCode.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CgExtCode.hi
-lib/${PKGNAME}/${PKGNAME}/CgExtCode.p_hi
-lib/${PKGNAME}/${PKGNAME}/CgForeignCall.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CgForeignCall.hi
-lib/${PKGNAME}/${PKGNAME}/CgForeignCall.p_hi
-lib/${PKGNAME}/${PKGNAME}/CgHeapery.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CgHeapery.hi
-lib/${PKGNAME}/${PKGNAME}/CgHeapery.p_hi
-lib/${PKGNAME}/${PKGNAME}/CgHpc.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CgHpc.hi
-lib/${PKGNAME}/${PKGNAME}/CgHpc.p_hi
-lib/${PKGNAME}/${PKGNAME}/CgInfoTbls.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CgInfoTbls.hi
-lib/${PKGNAME}/${PKGNAME}/CgInfoTbls.p_hi
-lib/${PKGNAME}/${PKGNAME}/CgLetNoEscape.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CgLetNoEscape.hi
-lib/${PKGNAME}/${PKGNAME}/CgLetNoEscape.p_hi
-lib/${PKGNAME}/${PKGNAME}/CgMonad.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CgMonad.hi
-lib/${PKGNAME}/${PKGNAME}/CgMonad.p_hi
-lib/${PKGNAME}/${PKGNAME}/CgParallel.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CgParallel.hi
-lib/${PKGNAME}/${PKGNAME}/CgParallel.p_hi
-lib/${PKGNAME}/${PKGNAME}/CgPrimOp.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CgPrimOp.hi
-lib/${PKGNAME}/${PKGNAME}/CgPrimOp.p_hi
-lib/${PKGNAME}/${PKGNAME}/CgProf.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CgProf.hi
-lib/${PKGNAME}/${PKGNAME}/CgProf.p_hi
-lib/${PKGNAME}/${PKGNAME}/CgStackery.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CgStackery.hi
-lib/${PKGNAME}/${PKGNAME}/CgStackery.p_hi
-lib/${PKGNAME}/${PKGNAME}/CgTailCall.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CgTailCall.hi
-lib/${PKGNAME}/${PKGNAME}/CgTailCall.p_hi
-lib/${PKGNAME}/${PKGNAME}/CgTicky.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CgTicky.hi
-lib/${PKGNAME}/${PKGNAME}/CgTicky.p_hi
-lib/${PKGNAME}/${PKGNAME}/CgUtils.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CgUtils.hi
-lib/${PKGNAME}/${PKGNAME}/CgUtils.p_hi
-lib/${PKGNAME}/${PKGNAME}/Check.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Check.hi
-lib/${PKGNAME}/${PKGNAME}/Check.p_hi
-lib/${PKGNAME}/${PKGNAME}/Class.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Class.hi
-lib/${PKGNAME}/${PKGNAME}/Class.p_hi
-lib/${PKGNAME}/${PKGNAME}/ClosureInfo.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/ClosureInfo.hi
-lib/${PKGNAME}/${PKGNAME}/ClosureInfo.p_hi
-lib/${PKGNAME}/${PKGNAME}/CmdLineParser.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CmdLineParser.hi
-lib/${PKGNAME}/${PKGNAME}/CmdLineParser.p_hi
-lib/${PKGNAME}/${PKGNAME}/Cmm.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Cmm.hi
-lib/${PKGNAME}/${PKGNAME}/Cmm.p_hi
-lib/${PKGNAME}/${PKGNAME}/CmmBuildInfoTables.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CmmBuildInfoTables.hi
-lib/${PKGNAME}/${PKGNAME}/CmmBuildInfoTables.p_hi
-lib/${PKGNAME}/${PKGNAME}/CmmCallConv.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CmmCallConv.hi
-lib/${PKGNAME}/${PKGNAME}/CmmCallConv.p_hi
-lib/${PKGNAME}/${PKGNAME}/CmmCommonBlockElim.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CmmCommonBlockElim.hi
-lib/${PKGNAME}/${PKGNAME}/CmmCommonBlockElim.p_hi
-lib/${PKGNAME}/${PKGNAME}/CmmContFlowOpt.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CmmContFlowOpt.hi
-lib/${PKGNAME}/${PKGNAME}/CmmContFlowOpt.p_hi
-lib/${PKGNAME}/${PKGNAME}/CmmCvt.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CmmCvt.hi
-lib/${PKGNAME}/${PKGNAME}/CmmCvt.p_hi
-lib/${PKGNAME}/${PKGNAME}/CmmExpr.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CmmExpr.hi
-lib/${PKGNAME}/${PKGNAME}/CmmExpr.p_hi
-lib/${PKGNAME}/${PKGNAME}/CmmInfo.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CmmInfo.hi
-lib/${PKGNAME}/${PKGNAME}/CmmInfo.p_hi
-lib/${PKGNAME}/${PKGNAME}/CmmLayoutStack.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CmmLayoutStack.hi
-lib/${PKGNAME}/${PKGNAME}/CmmLayoutStack.p_hi
-lib/${PKGNAME}/${PKGNAME}/CmmLex.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CmmLex.hi
-lib/${PKGNAME}/${PKGNAME}/CmmLex.p_hi
-lib/${PKGNAME}/${PKGNAME}/CmmLint.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CmmLint.hi
-lib/${PKGNAME}/${PKGNAME}/CmmLint.p_hi
-lib/${PKGNAME}/${PKGNAME}/CmmLive.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CmmLive.hi
-lib/${PKGNAME}/${PKGNAME}/CmmLive.p_hi
-lib/${PKGNAME}/${PKGNAME}/CmmMachOp.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CmmMachOp.hi
-lib/${PKGNAME}/${PKGNAME}/CmmMachOp.p_hi
-lib/${PKGNAME}/${PKGNAME}/CmmNode.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CmmNode.hi
-lib/${PKGNAME}/${PKGNAME}/CmmNode.p_hi
-lib/${PKGNAME}/${PKGNAME}/CmmOpt.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CmmOpt.hi
-lib/${PKGNAME}/${PKGNAME}/CmmOpt.p_hi
-lib/${PKGNAME}/${PKGNAME}/CmmParse.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CmmParse.hi
-lib/${PKGNAME}/${PKGNAME}/CmmParse.p_hi
-lib/${PKGNAME}/${PKGNAME}/CmmPipeline.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CmmPipeline.hi
-lib/${PKGNAME}/${PKGNAME}/CmmPipeline.p_hi
-lib/${PKGNAME}/${PKGNAME}/CmmProcPoint.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CmmProcPoint.hi
-lib/${PKGNAME}/${PKGNAME}/CmmProcPoint.p_hi
-lib/${PKGNAME}/${PKGNAME}/CmmRewriteAssignments.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CmmRewriteAssignments.hi
-lib/${PKGNAME}/${PKGNAME}/CmmRewriteAssignments.p_hi
-lib/${PKGNAME}/${PKGNAME}/CmmSink.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CmmSink.hi
-lib/${PKGNAME}/${PKGNAME}/CmmSink.p_hi
-lib/${PKGNAME}/${PKGNAME}/CmmType.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CmmType.hi
-lib/${PKGNAME}/${PKGNAME}/CmmType.p_hi
-lib/${PKGNAME}/${PKGNAME}/CmmUtils.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CmmUtils.hi
-lib/${PKGNAME}/${PKGNAME}/CmmUtils.p_hi
-lib/${PKGNAME}/${PKGNAME}/CodeGen.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CodeGen.hi
-lib/${PKGNAME}/${PKGNAME}/CodeGen.p_hi
-lib/${PKGNAME}/${PKGNAME}/CodeOutput.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CodeOutput.hi
-lib/${PKGNAME}/${PKGNAME}/CodeOutput.p_hi
-lib/${PKGNAME}/${PKGNAME}/Coercion.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Coercion.hi
-lib/${PKGNAME}/${PKGNAME}/Coercion.p_hi
-lib/${PKGNAME}/${PKGNAME}/Config.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Config.hi
-lib/${PKGNAME}/${PKGNAME}/Config.p_hi
-lib/${PKGNAME}/${PKGNAME}/Constants.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Constants.hi
-lib/${PKGNAME}/${PKGNAME}/Constants.p_hi
-lib/${PKGNAME}/${PKGNAME}/Convert.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Convert.hi
-lib/${PKGNAME}/${PKGNAME}/Convert.p_hi
-lib/${PKGNAME}/${PKGNAME}/CoreArity.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CoreArity.hi
-lib/${PKGNAME}/${PKGNAME}/CoreArity.p_hi
-lib/${PKGNAME}/${PKGNAME}/CoreFVs.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CoreFVs.hi
-lib/${PKGNAME}/${PKGNAME}/CoreFVs.p_hi
-lib/${PKGNAME}/${PKGNAME}/CoreLint.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CoreLint.hi
-lib/${PKGNAME}/${PKGNAME}/CoreLint.p_hi
-lib/${PKGNAME}/${PKGNAME}/CoreMonad.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CoreMonad.hi
-lib/${PKGNAME}/${PKGNAME}/CoreMonad.p_hi
-lib/${PKGNAME}/${PKGNAME}/CorePrep.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CorePrep.hi
-lib/${PKGNAME}/${PKGNAME}/CorePrep.p_hi
-lib/${PKGNAME}/${PKGNAME}/CoreSubst.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CoreSubst.hi
-lib/${PKGNAME}/${PKGNAME}/CoreSubst.p_hi
-lib/${PKGNAME}/${PKGNAME}/CoreSyn.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CoreSyn.hi
-lib/${PKGNAME}/${PKGNAME}/CoreSyn.p_hi
-lib/${PKGNAME}/${PKGNAME}/CoreTidy.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CoreTidy.hi
-lib/${PKGNAME}/${PKGNAME}/CoreTidy.p_hi
-lib/${PKGNAME}/${PKGNAME}/CoreToStg.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CoreToStg.hi
-lib/${PKGNAME}/${PKGNAME}/CoreToStg.p_hi
-lib/${PKGNAME}/${PKGNAME}/CoreUnfold.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CoreUnfold.hi
-lib/${PKGNAME}/${PKGNAME}/CoreUnfold.p_hi
-lib/${PKGNAME}/${PKGNAME}/CoreUtils.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CoreUtils.hi
-lib/${PKGNAME}/${PKGNAME}/CoreUtils.p_hi
-lib/${PKGNAME}/${PKGNAME}/CostCentre.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/CostCentre.hi
-lib/${PKGNAME}/${PKGNAME}/CostCentre.p_hi
-lib/${PKGNAME}/${PKGNAME}/Coverage.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Coverage.hi
-lib/${PKGNAME}/${PKGNAME}/Coverage.p_hi
-lib/${PKGNAME}/${PKGNAME}/Ctype.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Ctype.hi
-lib/${PKGNAME}/${PKGNAME}/Ctype.p_hi
-lib/${PKGNAME}/${PKGNAME}/DataCon.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/DataCon.hi
-lib/${PKGNAME}/${PKGNAME}/DataCon.p_hi
-lib/${PKGNAME}/${PKGNAME}/Debugger.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Debugger.hi
-lib/${PKGNAME}/${PKGNAME}/Debugger.p_hi
-lib/${PKGNAME}/${PKGNAME}/DebuggerUtils.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/DebuggerUtils.hi
-lib/${PKGNAME}/${PKGNAME}/DebuggerUtils.p_hi
-lib/${PKGNAME}/${PKGNAME}/Demand.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Demand.hi
-lib/${PKGNAME}/${PKGNAME}/Demand.p_hi
-lib/${PKGNAME}/${PKGNAME}/Desugar.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Desugar.hi
-lib/${PKGNAME}/${PKGNAME}/Desugar.p_hi
-lib/${PKGNAME}/${PKGNAME}/Digraph.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Digraph.hi
-lib/${PKGNAME}/${PKGNAME}/Digraph.p_hi
-lib/${PKGNAME}/${PKGNAME}/DmdAnal.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/DmdAnal.hi
-lib/${PKGNAME}/${PKGNAME}/DmdAnal.p_hi
-lib/${PKGNAME}/${PKGNAME}/DriverMkDepend.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/DriverMkDepend.hi
-lib/${PKGNAME}/${PKGNAME}/DriverMkDepend.p_hi
-lib/${PKGNAME}/${PKGNAME}/DriverPhases.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/DriverPhases.hi
-lib/${PKGNAME}/${PKGNAME}/DriverPhases.p_hi
-lib/${PKGNAME}/${PKGNAME}/DriverPipeline.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/DriverPipeline.hi
-lib/${PKGNAME}/${PKGNAME}/DriverPipeline.p_hi
-lib/${PKGNAME}/${PKGNAME}/DsArrows.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/DsArrows.hi
-lib/${PKGNAME}/${PKGNAME}/DsArrows.p_hi
-lib/${PKGNAME}/${PKGNAME}/DsBinds.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/DsBinds.hi
-lib/${PKGNAME}/${PKGNAME}/DsBinds.p_hi
-lib/${PKGNAME}/${PKGNAME}/DsCCall.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/DsCCall.hi
-lib/${PKGNAME}/${PKGNAME}/DsCCall.p_hi
-lib/${PKGNAME}/${PKGNAME}/DsExpr.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/DsExpr.hi
-lib/${PKGNAME}/${PKGNAME}/DsExpr.p_hi
-lib/${PKGNAME}/${PKGNAME}/DsForeign.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/DsForeign.hi
-lib/${PKGNAME}/${PKGNAME}/DsForeign.p_hi
-lib/${PKGNAME}/${PKGNAME}/DsGRHSs.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/DsGRHSs.hi
-lib/${PKGNAME}/${PKGNAME}/DsGRHSs.p_hi
-lib/${PKGNAME}/${PKGNAME}/DsListComp.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/DsListComp.hi
-lib/${PKGNAME}/${PKGNAME}/DsListComp.p_hi
-lib/${PKGNAME}/${PKGNAME}/DsMeta.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/DsMeta.hi
-lib/${PKGNAME}/${PKGNAME}/DsMeta.p_hi
-lib/${PKGNAME}/${PKGNAME}/DsMonad.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/DsMonad.hi
-lib/${PKGNAME}/${PKGNAME}/DsMonad.p_hi
-lib/${PKGNAME}/${PKGNAME}/DsUtils.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/DsUtils.hi
-lib/${PKGNAME}/${PKGNAME}/DsUtils.p_hi
-lib/${PKGNAME}/${PKGNAME}/DynFlags.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/DynFlags.hi
-lib/${PKGNAME}/${PKGNAME}/DynFlags.p_hi
-lib/${PKGNAME}/${PKGNAME}/DynamicLoading.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/DynamicLoading.hi
-lib/${PKGNAME}/${PKGNAME}/DynamicLoading.p_hi
-lib/${PKGNAME}/${PKGNAME}/Encoding.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Encoding.hi
-lib/${PKGNAME}/${PKGNAME}/Encoding.p_hi
-lib/${PKGNAME}/${PKGNAME}/ErrUtils.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/ErrUtils.hi
-lib/${PKGNAME}/${PKGNAME}/ErrUtils.p_hi
-lib/${PKGNAME}/${PKGNAME}/Exception.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Exception.hi
-lib/${PKGNAME}/${PKGNAME}/Exception.p_hi
-lib/${PKGNAME}/${PKGNAME}/ExternalCore.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/ExternalCore.hi
-lib/${PKGNAME}/${PKGNAME}/ExternalCore.p_hi
-lib/${PKGNAME}/${PKGNAME}/FamInst.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/FamInst.hi
-lib/${PKGNAME}/${PKGNAME}/FamInst.p_hi
-lib/${PKGNAME}/${PKGNAME}/FamInstEnv.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/FamInstEnv.hi
-lib/${PKGNAME}/${PKGNAME}/FamInstEnv.p_hi
-lib/${PKGNAME}/${PKGNAME}/FastBool.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/FastBool.hi
-lib/${PKGNAME}/${PKGNAME}/FastBool.p_hi
-lib/${PKGNAME}/${PKGNAME}/FastFunctions.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/FastFunctions.hi
-lib/${PKGNAME}/${PKGNAME}/FastFunctions.p_hi
-lib/${PKGNAME}/${PKGNAME}/FastMutInt.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/FastMutInt.hi
-lib/${PKGNAME}/${PKGNAME}/FastMutInt.p_hi
-lib/${PKGNAME}/${PKGNAME}/FastString.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/FastString.hi
-lib/${PKGNAME}/${PKGNAME}/FastString.p_hi
-lib/${PKGNAME}/${PKGNAME}/FastTypes.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/FastTypes.hi
-lib/${PKGNAME}/${PKGNAME}/FastTypes.p_hi
-lib/${PKGNAME}/${PKGNAME}/Finder.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Finder.hi
-lib/${PKGNAME}/${PKGNAME}/Finder.p_hi
-lib/${PKGNAME}/${PKGNAME}/Fingerprint.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Fingerprint.hi
-lib/${PKGNAME}/${PKGNAME}/Fingerprint.p_hi
-lib/${PKGNAME}/${PKGNAME}/FiniteMap.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/FiniteMap.hi
-lib/${PKGNAME}/${PKGNAME}/FiniteMap.p_hi
-lib/${PKGNAME}/${PKGNAME}/FlagChecker.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/FlagChecker.hi
-lib/${PKGNAME}/${PKGNAME}/FlagChecker.p_hi
-lib/${PKGNAME}/${PKGNAME}/FloatIn.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/FloatIn.hi
-lib/${PKGNAME}/${PKGNAME}/FloatIn.p_hi
-lib/${PKGNAME}/${PKGNAME}/FloatOut.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/FloatOut.hi
-lib/${PKGNAME}/${PKGNAME}/FloatOut.p_hi
-lib/${PKGNAME}/${PKGNAME}/ForeignCall.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/ForeignCall.hi
-lib/${PKGNAME}/${PKGNAME}/ForeignCall.p_hi
-lib/${PKGNAME}/${PKGNAME}/FunDeps.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/FunDeps.hi
-lib/${PKGNAME}/${PKGNAME}/FunDeps.p_hi
-lib/${PKGNAME}/${PKGNAME}/GHC.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/GHC.hi
-lib/${PKGNAME}/${PKGNAME}/GHC.p_hi
-lib/${PKGNAME}/${PKGNAME}/GhcMake.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/GhcMake.hi
-lib/${PKGNAME}/${PKGNAME}/GhcMake.p_hi
-lib/${PKGNAME}/${PKGNAME}/GhcMonad.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/GhcMonad.hi
-lib/${PKGNAME}/${PKGNAME}/GhcMonad.p_hi
-lib/${PKGNAME}/${PKGNAME}/GhcPlugins.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/GhcPlugins.hi
-lib/${PKGNAME}/${PKGNAME}/GhcPlugins.p_hi
-lib/${PKGNAME}/${PKGNAME}/GraphBase.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/GraphBase.hi
-lib/${PKGNAME}/${PKGNAME}/GraphBase.p_hi
-lib/${PKGNAME}/${PKGNAME}/GraphColor.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/GraphColor.hi
-lib/${PKGNAME}/${PKGNAME}/GraphColor.p_hi
-lib/${PKGNAME}/${PKGNAME}/GraphOps.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/GraphOps.hi
-lib/${PKGNAME}/${PKGNAME}/GraphOps.p_hi
-lib/${PKGNAME}/${PKGNAME}/GraphPpr.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/GraphPpr.hi
-lib/${PKGNAME}/${PKGNAME}/GraphPpr.p_hi
-lib/${PKGNAME}/${PKGNAME}/HaddockUtils.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/HaddockUtils.hi
-lib/${PKGNAME}/${PKGNAME}/HaddockUtils.p_hi
-lib/${PKGNAME}/${PKGNAME}/HeaderInfo.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/HeaderInfo.hi
-lib/${PKGNAME}/${PKGNAME}/HeaderInfo.p_hi
-lib/${PKGNAME}/${PKGNAME}/Hoopl.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Hoopl.hi
-lib/${PKGNAME}/${PKGNAME}/Hoopl.p_hi
-lib/${PKGNAME}/${PKGNAME}/Hoopl/Dataflow.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Hoopl/Dataflow.hi
-lib/${PKGNAME}/${PKGNAME}/Hoopl/Dataflow.p_hi
-lib/${PKGNAME}/${PKGNAME}/HsBinds.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/HsBinds.hi
-lib/${PKGNAME}/${PKGNAME}/HsBinds.p_hi
-lib/${PKGNAME}/${PKGNAME}/HsDecls.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/HsDecls.hi
-lib/${PKGNAME}/${PKGNAME}/HsDecls.p_hi
-lib/${PKGNAME}/${PKGNAME}/HsDoc.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/HsDoc.hi
-lib/${PKGNAME}/${PKGNAME}/HsDoc.p_hi
-lib/${PKGNAME}/${PKGNAME}/HsExpr.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/HsExpr.hi
-lib/${PKGNAME}/${PKGNAME}/HsExpr.p_hi
-lib/${PKGNAME}/${PKGNAME}/HsImpExp.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/HsImpExp.hi
-lib/${PKGNAME}/${PKGNAME}/HsImpExp.p_hi
-lib/${PKGNAME}/${PKGNAME}/HsLit.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/HsLit.hi
-lib/${PKGNAME}/${PKGNAME}/HsLit.p_hi
-lib/${PKGNAME}/${PKGNAME}/HsPat.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/HsPat.hi
-lib/${PKGNAME}/${PKGNAME}/HsPat.p_hi
-lib/${PKGNAME}/${PKGNAME}/HsSyn.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/HsSyn.hi
-lib/${PKGNAME}/${PKGNAME}/HsSyn.p_hi
-lib/${PKGNAME}/${PKGNAME}/HsTypes.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/HsTypes.hi
-lib/${PKGNAME}/${PKGNAME}/HsTypes.p_hi
-lib/${PKGNAME}/${PKGNAME}/HsUtils.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/HsUtils.hi
-lib/${PKGNAME}/${PKGNAME}/HsUtils.p_hi
-lib/${PKGNAME}/${PKGNAME}/HscMain.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/HscMain.hi
-lib/${PKGNAME}/${PKGNAME}/HscMain.p_hi
-lib/${PKGNAME}/${PKGNAME}/HscStats.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/HscStats.hi
-lib/${PKGNAME}/${PKGNAME}/HscStats.p_hi
-lib/${PKGNAME}/${PKGNAME}/HscTypes.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/HscTypes.hi
-lib/${PKGNAME}/${PKGNAME}/HscTypes.p_hi
-lib/${PKGNAME}/${PKGNAME}/IOEnv.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/IOEnv.hi
-lib/${PKGNAME}/${PKGNAME}/IOEnv.p_hi
-lib/${PKGNAME}/${PKGNAME}/Id.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Id.hi
-lib/${PKGNAME}/${PKGNAME}/Id.p_hi
-lib/${PKGNAME}/${PKGNAME}/IdInfo.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/IdInfo.hi
-lib/${PKGNAME}/${PKGNAME}/IdInfo.p_hi
-lib/${PKGNAME}/${PKGNAME}/IfaceEnv.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/IfaceEnv.hi
-lib/${PKGNAME}/${PKGNAME}/IfaceEnv.p_hi
-lib/${PKGNAME}/${PKGNAME}/IfaceSyn.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/IfaceSyn.hi
-lib/${PKGNAME}/${PKGNAME}/IfaceSyn.p_hi
-lib/${PKGNAME}/${PKGNAME}/IfaceType.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/IfaceType.hi
-lib/${PKGNAME}/${PKGNAME}/IfaceType.p_hi
-lib/${PKGNAME}/${PKGNAME}/Inst.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Inst.hi
-lib/${PKGNAME}/${PKGNAME}/Inst.p_hi
-lib/${PKGNAME}/${PKGNAME}/InstEnv.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/InstEnv.hi
-lib/${PKGNAME}/${PKGNAME}/InstEnv.p_hi
-lib/${PKGNAME}/${PKGNAME}/Instruction.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Instruction.hi
-lib/${PKGNAME}/${PKGNAME}/Instruction.p_hi
-lib/${PKGNAME}/${PKGNAME}/InteractiveEval.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/InteractiveEval.hi
-lib/${PKGNAME}/${PKGNAME}/InteractiveEval.p_hi
-lib/${PKGNAME}/${PKGNAME}/Kind.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Kind.hi
-lib/${PKGNAME}/${PKGNAME}/Kind.p_hi
-lib/${PKGNAME}/${PKGNAME}/LexCore.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/LexCore.hi
-lib/${PKGNAME}/${PKGNAME}/LexCore.p_hi
-lib/${PKGNAME}/${PKGNAME}/Lexer.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Lexer.hi
-lib/${PKGNAME}/${PKGNAME}/Lexer.p_hi
-lib/${PKGNAME}/${PKGNAME}/LibFFI.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/LibFFI.hi
-lib/${PKGNAME}/${PKGNAME}/LibFFI.p_hi
-lib/${PKGNAME}/${PKGNAME}/LiberateCase.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/LiberateCase.hi
-lib/${PKGNAME}/${PKGNAME}/LiberateCase.p_hi
-lib/${PKGNAME}/${PKGNAME}/Linker.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Linker.hi
-lib/${PKGNAME}/${PKGNAME}/Linker.p_hi
-lib/${PKGNAME}/${PKGNAME}/ListSetOps.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/ListSetOps.hi
-lib/${PKGNAME}/${PKGNAME}/ListSetOps.p_hi
-lib/${PKGNAME}/${PKGNAME}/Literal.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Literal.hi
-lib/${PKGNAME}/${PKGNAME}/Literal.p_hi
-lib/${PKGNAME}/${PKGNAME}/Llvm.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Llvm.hi
-lib/${PKGNAME}/${PKGNAME}/Llvm.p_hi
-lib/${PKGNAME}/${PKGNAME}/Llvm/AbsSyn.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Llvm/AbsSyn.hi
-lib/${PKGNAME}/${PKGNAME}/Llvm/AbsSyn.p_hi
-lib/${PKGNAME}/${PKGNAME}/Llvm/PpLlvm.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Llvm/PpLlvm.hi
-lib/${PKGNAME}/${PKGNAME}/Llvm/PpLlvm.p_hi
-lib/${PKGNAME}/${PKGNAME}/Llvm/Types.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Llvm/Types.hi
-lib/${PKGNAME}/${PKGNAME}/Llvm/Types.p_hi
-lib/${PKGNAME}/${PKGNAME}/LlvmCodeGen.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/LlvmCodeGen.hi
-lib/${PKGNAME}/${PKGNAME}/LlvmCodeGen.p_hi
-lib/${PKGNAME}/${PKGNAME}/LlvmCodeGen/Base.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/LlvmCodeGen/Base.hi
-lib/${PKGNAME}/${PKGNAME}/LlvmCodeGen/Base.p_hi
-lib/${PKGNAME}/${PKGNAME}/LlvmCodeGen/CodeGen.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/LlvmCodeGen/CodeGen.hi
-lib/${PKGNAME}/${PKGNAME}/LlvmCodeGen/CodeGen.p_hi
-lib/${PKGNAME}/${PKGNAME}/LlvmCodeGen/Data.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/LlvmCodeGen/Data.hi
-lib/${PKGNAME}/${PKGNAME}/LlvmCodeGen/Data.p_hi
-lib/${PKGNAME}/${PKGNAME}/LlvmCodeGen/Ppr.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/LlvmCodeGen/Ppr.hi
-lib/${PKGNAME}/${PKGNAME}/LlvmCodeGen/Ppr.p_hi
-lib/${PKGNAME}/${PKGNAME}/LlvmCodeGen/Regs.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/LlvmCodeGen/Regs.hi
-lib/${PKGNAME}/${PKGNAME}/LlvmCodeGen/Regs.p_hi
-lib/${PKGNAME}/${PKGNAME}/LlvmMangler.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/LlvmMangler.hi
-lib/${PKGNAME}/${PKGNAME}/LlvmMangler.p_hi
-lib/${PKGNAME}/${PKGNAME}/LoadIface.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/LoadIface.hi
-lib/${PKGNAME}/${PKGNAME}/LoadIface.p_hi
-lib/${PKGNAME}/${PKGNAME}/Match.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Match.hi
-lib/${PKGNAME}/${PKGNAME}/Match.p_hi
-lib/${PKGNAME}/${PKGNAME}/MatchCon.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/MatchCon.hi
-lib/${PKGNAME}/${PKGNAME}/MatchCon.p_hi
-lib/${PKGNAME}/${PKGNAME}/MatchLit.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/MatchLit.hi
-lib/${PKGNAME}/${PKGNAME}/MatchLit.p_hi
-lib/${PKGNAME}/${PKGNAME}/Maybes.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Maybes.hi
-lib/${PKGNAME}/${PKGNAME}/Maybes.p_hi
-lib/${PKGNAME}/${PKGNAME}/MkCore.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/MkCore.hi
-lib/${PKGNAME}/${PKGNAME}/MkCore.p_hi
-lib/${PKGNAME}/${PKGNAME}/MkExternalCore.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/MkExternalCore.hi
-lib/${PKGNAME}/${PKGNAME}/MkExternalCore.p_hi
-lib/${PKGNAME}/${PKGNAME}/MkGraph.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/MkGraph.hi
-lib/${PKGNAME}/${PKGNAME}/MkGraph.p_hi
-lib/${PKGNAME}/${PKGNAME}/MkId.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/MkId.hi
-lib/${PKGNAME}/${PKGNAME}/MkId.p_hi
-lib/${PKGNAME}/${PKGNAME}/MkIface.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/MkIface.hi
-lib/${PKGNAME}/${PKGNAME}/MkIface.p_hi
-lib/${PKGNAME}/${PKGNAME}/Module.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Module.hi
-lib/${PKGNAME}/${PKGNAME}/Module.p_hi
-lib/${PKGNAME}/${PKGNAME}/MonadUtils.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/MonadUtils.hi
-lib/${PKGNAME}/${PKGNAME}/MonadUtils.p_hi
-lib/${PKGNAME}/${PKGNAME}/NCGMonad.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/NCGMonad.hi
-lib/${PKGNAME}/${PKGNAME}/NCGMonad.p_hi
-lib/${PKGNAME}/${PKGNAME}/Name.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Name.hi
-lib/${PKGNAME}/${PKGNAME}/Name.p_hi
-lib/${PKGNAME}/${PKGNAME}/NameEnv.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/NameEnv.hi
-lib/${PKGNAME}/${PKGNAME}/NameEnv.p_hi
-lib/${PKGNAME}/${PKGNAME}/NameSet.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/NameSet.hi
-lib/${PKGNAME}/${PKGNAME}/NameSet.p_hi
-lib/${PKGNAME}/${PKGNAME}/ObjLink.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/ObjLink.hi
-lib/${PKGNAME}/${PKGNAME}/ObjLink.p_hi
-lib/${PKGNAME}/${PKGNAME}/OccName.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/OccName.hi
-lib/${PKGNAME}/${PKGNAME}/OccName.p_hi
-lib/${PKGNAME}/${PKGNAME}/OccurAnal.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/OccurAnal.hi
-lib/${PKGNAME}/${PKGNAME}/OccurAnal.p_hi
-lib/${PKGNAME}/${PKGNAME}/OldCmm.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/OldCmm.hi
-lib/${PKGNAME}/${PKGNAME}/OldCmm.p_hi
-lib/${PKGNAME}/${PKGNAME}/OldCmmLint.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/OldCmmLint.hi
-lib/${PKGNAME}/${PKGNAME}/OldCmmLint.p_hi
-lib/${PKGNAME}/${PKGNAME}/OldCmmUtils.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/OldCmmUtils.hi
-lib/${PKGNAME}/${PKGNAME}/OldCmmUtils.p_hi
-lib/${PKGNAME}/${PKGNAME}/OldPprCmm.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/OldPprCmm.hi
-lib/${PKGNAME}/${PKGNAME}/OldPprCmm.p_hi
-lib/${PKGNAME}/${PKGNAME}/OptCoercion.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/OptCoercion.hi
-lib/${PKGNAME}/${PKGNAME}/OptCoercion.p_hi
-lib/${PKGNAME}/${PKGNAME}/OrdList.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/OrdList.hi
-lib/${PKGNAME}/${PKGNAME}/OrdList.p_hi
-lib/${PKGNAME}/${PKGNAME}/Outputable.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Outputable.hi
-lib/${PKGNAME}/${PKGNAME}/Outputable.p_hi
-lib/${PKGNAME}/${PKGNAME}/PIC.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/PIC.hi
-lib/${PKGNAME}/${PKGNAME}/PIC.p_hi
-lib/${PKGNAME}/${PKGNAME}/PPC/CodeGen.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/PPC/CodeGen.hi
-lib/${PKGNAME}/${PKGNAME}/PPC/CodeGen.p_hi
-lib/${PKGNAME}/${PKGNAME}/PPC/Cond.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/PPC/Cond.hi
-lib/${PKGNAME}/${PKGNAME}/PPC/Cond.p_hi
-lib/${PKGNAME}/${PKGNAME}/PPC/Instr.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/PPC/Instr.hi
-lib/${PKGNAME}/${PKGNAME}/PPC/Instr.p_hi
-lib/${PKGNAME}/${PKGNAME}/PPC/Ppr.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/PPC/Ppr.hi
-lib/${PKGNAME}/${PKGNAME}/PPC/Ppr.p_hi
-lib/${PKGNAME}/${PKGNAME}/PPC/RegInfo.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/PPC/RegInfo.hi
-lib/${PKGNAME}/${PKGNAME}/PPC/RegInfo.p_hi
-lib/${PKGNAME}/${PKGNAME}/PPC/Regs.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/PPC/Regs.hi
-lib/${PKGNAME}/${PKGNAME}/PPC/Regs.p_hi
-lib/${PKGNAME}/${PKGNAME}/PackageConfig.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/PackageConfig.hi
-lib/${PKGNAME}/${PKGNAME}/PackageConfig.p_hi
-lib/${PKGNAME}/${PKGNAME}/Packages.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Packages.hi
-lib/${PKGNAME}/${PKGNAME}/Packages.p_hi
-lib/${PKGNAME}/${PKGNAME}/Pair.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Pair.hi
-lib/${PKGNAME}/${PKGNAME}/Pair.p_hi
-lib/${PKGNAME}/${PKGNAME}/Panic.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Panic.hi
-lib/${PKGNAME}/${PKGNAME}/Panic.p_hi
-lib/${PKGNAME}/${PKGNAME}/Parser.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Parser.hi
-lib/${PKGNAME}/${PKGNAME}/Parser.p_hi
-lib/${PKGNAME}/${PKGNAME}/ParserCore.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/ParserCore.hi
-lib/${PKGNAME}/${PKGNAME}/ParserCore.p_hi
-lib/${PKGNAME}/${PKGNAME}/ParserCoreUtils.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/ParserCoreUtils.hi
-lib/${PKGNAME}/${PKGNAME}/ParserCoreUtils.p_hi
-lib/${PKGNAME}/${PKGNAME}/Platform.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Platform.hi
-lib/${PKGNAME}/${PKGNAME}/Platform.p_hi
-lib/${PKGNAME}/${PKGNAME}/PprBase.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/PprBase.hi
-lib/${PKGNAME}/${PKGNAME}/PprBase.p_hi
-lib/${PKGNAME}/${PKGNAME}/PprC.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/PprC.hi
-lib/${PKGNAME}/${PKGNAME}/PprC.p_hi
-lib/${PKGNAME}/${PKGNAME}/PprCmm.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/PprCmm.hi
-lib/${PKGNAME}/${PKGNAME}/PprCmm.p_hi
-lib/${PKGNAME}/${PKGNAME}/PprCmmDecl.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/PprCmmDecl.hi
-lib/${PKGNAME}/${PKGNAME}/PprCmmDecl.p_hi
-lib/${PKGNAME}/${PKGNAME}/PprCmmExpr.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/PprCmmExpr.hi
-lib/${PKGNAME}/${PKGNAME}/PprCmmExpr.p_hi
-lib/${PKGNAME}/${PKGNAME}/PprCore.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/PprCore.hi
-lib/${PKGNAME}/${PKGNAME}/PprCore.p_hi
-lib/${PKGNAME}/${PKGNAME}/PprExternalCore.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/PprExternalCore.hi
-lib/${PKGNAME}/${PKGNAME}/PprExternalCore.p_hi
-lib/${PKGNAME}/${PKGNAME}/PprTyThing.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/PprTyThing.hi
-lib/${PKGNAME}/${PKGNAME}/PprTyThing.p_hi
-lib/${PKGNAME}/${PKGNAME}/PrelInfo.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/PrelInfo.hi
-lib/${PKGNAME}/${PKGNAME}/PrelInfo.p_hi
-lib/${PKGNAME}/${PKGNAME}/PrelNames.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/PrelNames.hi
-lib/${PKGNAME}/${PKGNAME}/PrelNames.p_hi
-lib/${PKGNAME}/${PKGNAME}/PrelRules.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/PrelRules.hi
-lib/${PKGNAME}/${PKGNAME}/PrelRules.p_hi
-lib/${PKGNAME}/${PKGNAME}/Pretty.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Pretty.hi
-lib/${PKGNAME}/${PKGNAME}/Pretty.p_hi
-lib/${PKGNAME}/${PKGNAME}/PrimOp.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/PrimOp.hi
-lib/${PKGNAME}/${PKGNAME}/PrimOp.p_hi
-lib/${PKGNAME}/${PKGNAME}/ProfInit.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/ProfInit.hi
-lib/${PKGNAME}/${PKGNAME}/ProfInit.p_hi
-lib/${PKGNAME}/${PKGNAME}/RdrHsSyn.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/RdrHsSyn.hi
-lib/${PKGNAME}/${PKGNAME}/RdrHsSyn.p_hi
-lib/${PKGNAME}/${PKGNAME}/RdrName.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/RdrName.hi
-lib/${PKGNAME}/${PKGNAME}/RdrName.p_hi
-lib/${PKGNAME}/${PKGNAME}/Reg.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Reg.hi
-lib/${PKGNAME}/${PKGNAME}/Reg.p_hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/ArchBase.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/ArchBase.hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/ArchBase.p_hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/ArchX86.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/ArchX86.hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/ArchX86.p_hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/Coalesce.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/Coalesce.hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/Coalesce.p_hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/Main.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/Main.hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/Main.p_hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/Spill.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/Spill.hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/Spill.p_hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/SpillClean.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/SpillClean.hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/SpillClean.p_hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/SpillCost.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/SpillCost.hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/SpillCost.p_hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/Stats.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/Stats.hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/Stats.p_hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/TrivColorable.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/TrivColorable.hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/TrivColorable.p_hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/Base.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/Base.hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/Base.p_hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/FreeRegs.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/FreeRegs.hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/FreeRegs.p_hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/JoinToTargets.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/JoinToTargets.hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/JoinToTargets.p_hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/Main.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/Main.hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/Main.p_hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/PPC/FreeRegs.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/PPC/FreeRegs.hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/PPC/FreeRegs.p_hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/SPARC/FreeRegs.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/SPARC/FreeRegs.hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/SPARC/FreeRegs.p_hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/StackMap.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/StackMap.hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/StackMap.p_hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/State.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/State.hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/State.p_hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/Stats.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/Stats.hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/Stats.p_hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/X86/FreeRegs.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/X86/FreeRegs.hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/X86/FreeRegs.p_hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Liveness.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Liveness.hi
-lib/${PKGNAME}/${PKGNAME}/RegAlloc/Liveness.p_hi
-lib/${PKGNAME}/${PKGNAME}/RegClass.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/RegClass.hi
-lib/${PKGNAME}/${PKGNAME}/RegClass.p_hi
-lib/${PKGNAME}/${PKGNAME}/RnBinds.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/RnBinds.hi
-lib/${PKGNAME}/${PKGNAME}/RnBinds.p_hi
-lib/${PKGNAME}/${PKGNAME}/RnEnv.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/RnEnv.hi
-lib/${PKGNAME}/${PKGNAME}/RnEnv.p_hi
-lib/${PKGNAME}/${PKGNAME}/RnExpr.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/RnExpr.hi
-lib/${PKGNAME}/${PKGNAME}/RnExpr.p_hi
-lib/${PKGNAME}/${PKGNAME}/RnHsDoc.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/RnHsDoc.hi
-lib/${PKGNAME}/${PKGNAME}/RnHsDoc.p_hi
-lib/${PKGNAME}/${PKGNAME}/RnNames.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/RnNames.hi
-lib/${PKGNAME}/${PKGNAME}/RnNames.p_hi
-lib/${PKGNAME}/${PKGNAME}/RnPat.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/RnPat.hi
-lib/${PKGNAME}/${PKGNAME}/RnPat.p_hi
-lib/${PKGNAME}/${PKGNAME}/RnSource.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/RnSource.hi
-lib/${PKGNAME}/${PKGNAME}/RnSource.p_hi
-lib/${PKGNAME}/${PKGNAME}/RnTypes.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/RnTypes.hi
-lib/${PKGNAME}/${PKGNAME}/RnTypes.p_hi
-lib/${PKGNAME}/${PKGNAME}/RtClosureInspect.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/RtClosureInspect.hi
-lib/${PKGNAME}/${PKGNAME}/RtClosureInspect.p_hi
-lib/${PKGNAME}/${PKGNAME}/Rules.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Rules.hi
-lib/${PKGNAME}/${PKGNAME}/Rules.p_hi
-lib/${PKGNAME}/${PKGNAME}/SAT.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/SAT.hi
-lib/${PKGNAME}/${PKGNAME}/SAT.p_hi
-lib/${PKGNAME}/${PKGNAME}/SCCfinal.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/SCCfinal.hi
-lib/${PKGNAME}/${PKGNAME}/SCCfinal.p_hi
-lib/${PKGNAME}/${PKGNAME}/SMRep.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/SMRep.hi
-lib/${PKGNAME}/${PKGNAME}/SMRep.p_hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/AddrMode.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/AddrMode.hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/AddrMode.p_hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/Base.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/Base.hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/Base.p_hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/CodeGen.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/CodeGen.hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/CodeGen.p_hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/CodeGen/Amode.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/CodeGen/Amode.hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/CodeGen/Amode.p_hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/CodeGen/Base.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/CodeGen/Base.hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/CodeGen/Base.p_hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/CodeGen/CondCode.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/CodeGen/CondCode.hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/CodeGen/CondCode.p_hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/CodeGen/Expand.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/CodeGen/Expand.hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/CodeGen/Expand.p_hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/CodeGen/Gen32.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/CodeGen/Gen32.hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/CodeGen/Gen32.p_hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/CodeGen/Gen64.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/CodeGen/Gen64.hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/CodeGen/Gen64.p_hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/CodeGen/Sanity.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/CodeGen/Sanity.hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/CodeGen/Sanity.p_hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/Cond.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/Cond.hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/Cond.p_hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/Imm.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/Imm.hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/Imm.p_hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/Instr.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/Instr.hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/Instr.p_hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/Ppr.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/Ppr.hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/Ppr.p_hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/RegPlate.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/RegPlate.hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/RegPlate.p_hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/Regs.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/Regs.hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/Regs.p_hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/ShortcutJump.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/ShortcutJump.hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/ShortcutJump.p_hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/Stack.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/Stack.hi
-lib/${PKGNAME}/${PKGNAME}/SPARC/Stack.p_hi
-lib/${PKGNAME}/${PKGNAME}/SRT.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/SRT.hi
-lib/${PKGNAME}/${PKGNAME}/SRT.p_hi
-lib/${PKGNAME}/${PKGNAME}/Serialized.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Serialized.hi
-lib/${PKGNAME}/${PKGNAME}/Serialized.p_hi
-lib/${PKGNAME}/${PKGNAME}/SetLevels.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/SetLevels.hi
-lib/${PKGNAME}/${PKGNAME}/SetLevels.p_hi
-lib/${PKGNAME}/${PKGNAME}/SimplCore.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/SimplCore.hi
-lib/${PKGNAME}/${PKGNAME}/SimplCore.p_hi
-lib/${PKGNAME}/${PKGNAME}/SimplEnv.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/SimplEnv.hi
-lib/${PKGNAME}/${PKGNAME}/SimplEnv.p_hi
-lib/${PKGNAME}/${PKGNAME}/SimplMonad.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/SimplMonad.hi
-lib/${PKGNAME}/${PKGNAME}/SimplMonad.p_hi
-lib/${PKGNAME}/${PKGNAME}/SimplStg.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/SimplStg.hi
-lib/${PKGNAME}/${PKGNAME}/SimplStg.p_hi
-lib/${PKGNAME}/${PKGNAME}/SimplUtils.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/SimplUtils.hi
-lib/${PKGNAME}/${PKGNAME}/SimplUtils.p_hi
-lib/${PKGNAME}/${PKGNAME}/Simplify.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Simplify.hi
-lib/${PKGNAME}/${PKGNAME}/Simplify.p_hi
-lib/${PKGNAME}/${PKGNAME}/Size.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Size.hi
-lib/${PKGNAME}/${PKGNAME}/Size.p_hi
-lib/${PKGNAME}/${PKGNAME}/SpecConstr.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/SpecConstr.hi
-lib/${PKGNAME}/${PKGNAME}/SpecConstr.p_hi
-lib/${PKGNAME}/${PKGNAME}/Specialise.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Specialise.hi
-lib/${PKGNAME}/${PKGNAME}/Specialise.p_hi
-lib/${PKGNAME}/${PKGNAME}/SrcLoc.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/SrcLoc.hi
-lib/${PKGNAME}/${PKGNAME}/SrcLoc.p_hi
-lib/${PKGNAME}/${PKGNAME}/State.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/State.hi
-lib/${PKGNAME}/${PKGNAME}/State.p_hi
-lib/${PKGNAME}/${PKGNAME}/StaticFlagParser.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/StaticFlagParser.hi
-lib/${PKGNAME}/${PKGNAME}/StaticFlagParser.p_hi
-lib/${PKGNAME}/${PKGNAME}/StaticFlags.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/StaticFlags.hi
-lib/${PKGNAME}/${PKGNAME}/StaticFlags.p_hi
-lib/${PKGNAME}/${PKGNAME}/StgCmm.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/StgCmm.hi
-lib/${PKGNAME}/${PKGNAME}/StgCmm.p_hi
-lib/${PKGNAME}/${PKGNAME}/StgCmmBind.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/StgCmmBind.hi
-lib/${PKGNAME}/${PKGNAME}/StgCmmBind.p_hi
-lib/${PKGNAME}/${PKGNAME}/StgCmmClosure.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/StgCmmClosure.hi
-lib/${PKGNAME}/${PKGNAME}/StgCmmClosure.p_hi
-lib/${PKGNAME}/${PKGNAME}/StgCmmCon.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/StgCmmCon.hi
-lib/${PKGNAME}/${PKGNAME}/StgCmmCon.p_hi
-lib/${PKGNAME}/${PKGNAME}/StgCmmEnv.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/StgCmmEnv.hi
-lib/${PKGNAME}/${PKGNAME}/StgCmmEnv.p_hi
-lib/${PKGNAME}/${PKGNAME}/StgCmmExpr.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/StgCmmExpr.hi
-lib/${PKGNAME}/${PKGNAME}/StgCmmExpr.p_hi
-lib/${PKGNAME}/${PKGNAME}/StgCmmForeign.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/StgCmmForeign.hi
-lib/${PKGNAME}/${PKGNAME}/StgCmmForeign.p_hi
-lib/${PKGNAME}/${PKGNAME}/StgCmmGran.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/StgCmmGran.hi
-lib/${PKGNAME}/${PKGNAME}/StgCmmGran.p_hi
-lib/${PKGNAME}/${PKGNAME}/StgCmmHeap.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/StgCmmHeap.hi
-lib/${PKGNAME}/${PKGNAME}/StgCmmHeap.p_hi
-lib/${PKGNAME}/${PKGNAME}/StgCmmHpc.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/StgCmmHpc.hi
-lib/${PKGNAME}/${PKGNAME}/StgCmmHpc.p_hi
-lib/${PKGNAME}/${PKGNAME}/StgCmmLayout.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/StgCmmLayout.hi
-lib/${PKGNAME}/${PKGNAME}/StgCmmLayout.p_hi
-lib/${PKGNAME}/${PKGNAME}/StgCmmMonad.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/StgCmmMonad.hi
-lib/${PKGNAME}/${PKGNAME}/StgCmmMonad.p_hi
-lib/${PKGNAME}/${PKGNAME}/StgCmmPrim.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/StgCmmPrim.hi
-lib/${PKGNAME}/${PKGNAME}/StgCmmPrim.p_hi
-lib/${PKGNAME}/${PKGNAME}/StgCmmProf.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/StgCmmProf.hi
-lib/${PKGNAME}/${PKGNAME}/StgCmmProf.p_hi
-lib/${PKGNAME}/${PKGNAME}/StgCmmTicky.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/StgCmmTicky.hi
-lib/${PKGNAME}/${PKGNAME}/StgCmmTicky.p_hi
-lib/${PKGNAME}/${PKGNAME}/StgCmmUtils.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/StgCmmUtils.hi
-lib/${PKGNAME}/${PKGNAME}/StgCmmUtils.p_hi
-lib/${PKGNAME}/${PKGNAME}/StgLint.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/StgLint.hi
-lib/${PKGNAME}/${PKGNAME}/StgLint.p_hi
-lib/${PKGNAME}/${PKGNAME}/StgStats.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/StgStats.hi
-lib/${PKGNAME}/${PKGNAME}/StgStats.p_hi
-lib/${PKGNAME}/${PKGNAME}/StgSyn.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/StgSyn.hi
-lib/${PKGNAME}/${PKGNAME}/StgSyn.p_hi
-lib/${PKGNAME}/${PKGNAME}/Stream.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Stream.hi
-lib/${PKGNAME}/${PKGNAME}/Stream.p_hi
-lib/${PKGNAME}/${PKGNAME}/StringBuffer.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/StringBuffer.hi
-lib/${PKGNAME}/${PKGNAME}/StringBuffer.p_hi
-lib/${PKGNAME}/${PKGNAME}/SysTools.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/SysTools.hi
-lib/${PKGNAME}/${PKGNAME}/SysTools.p_hi
-lib/${PKGNAME}/${PKGNAME}/TargetReg.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/TargetReg.hi
-lib/${PKGNAME}/${PKGNAME}/TargetReg.p_hi
-lib/${PKGNAME}/${PKGNAME}/TcAnnotations.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/TcAnnotations.hi
-lib/${PKGNAME}/${PKGNAME}/TcAnnotations.p_hi
-lib/${PKGNAME}/${PKGNAME}/TcArrows.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/TcArrows.hi
-lib/${PKGNAME}/${PKGNAME}/TcArrows.p_hi
-lib/${PKGNAME}/${PKGNAME}/TcBinds.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/TcBinds.hi
-lib/${PKGNAME}/${PKGNAME}/TcBinds.p_hi
-lib/${PKGNAME}/${PKGNAME}/TcCanonical.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/TcCanonical.hi
-lib/${PKGNAME}/${PKGNAME}/TcCanonical.p_hi
-lib/${PKGNAME}/${PKGNAME}/TcClassDcl.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/TcClassDcl.hi
-lib/${PKGNAME}/${PKGNAME}/TcClassDcl.p_hi
-lib/${PKGNAME}/${PKGNAME}/TcDefaults.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/TcDefaults.hi
-lib/${PKGNAME}/${PKGNAME}/TcDefaults.p_hi
-lib/${PKGNAME}/${PKGNAME}/TcDeriv.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/TcDeriv.hi
-lib/${PKGNAME}/${PKGNAME}/TcDeriv.p_hi
-lib/${PKGNAME}/${PKGNAME}/TcEnv.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/TcEnv.hi
-lib/${PKGNAME}/${PKGNAME}/TcEnv.p_hi
-lib/${PKGNAME}/${PKGNAME}/TcErrors.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/TcErrors.hi
-lib/${PKGNAME}/${PKGNAME}/TcErrors.p_hi
-lib/${PKGNAME}/${PKGNAME}/TcEvidence.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/TcEvidence.hi
-lib/${PKGNAME}/${PKGNAME}/TcEvidence.p_hi
-lib/${PKGNAME}/${PKGNAME}/TcExpr.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/TcExpr.hi
-lib/${PKGNAME}/${PKGNAME}/TcExpr.p_hi
-lib/${PKGNAME}/${PKGNAME}/TcForeign.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/TcForeign.hi
-lib/${PKGNAME}/${PKGNAME}/TcForeign.p_hi
-lib/${PKGNAME}/${PKGNAME}/TcGenDeriv.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/TcGenDeriv.hi
-lib/${PKGNAME}/${PKGNAME}/TcGenDeriv.p_hi
-lib/${PKGNAME}/${PKGNAME}/TcGenGenerics.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/TcGenGenerics.hi
-lib/${PKGNAME}/${PKGNAME}/TcGenGenerics.p_hi
-lib/${PKGNAME}/${PKGNAME}/TcHsSyn.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/TcHsSyn.hi
-lib/${PKGNAME}/${PKGNAME}/TcHsSyn.p_hi
-lib/${PKGNAME}/${PKGNAME}/TcHsType.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/TcHsType.hi
-lib/${PKGNAME}/${PKGNAME}/TcHsType.p_hi
-lib/${PKGNAME}/${PKGNAME}/TcIface.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/TcIface.hi
-lib/${PKGNAME}/${PKGNAME}/TcIface.p_hi
-lib/${PKGNAME}/${PKGNAME}/TcInstDcls.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/TcInstDcls.hi
-lib/${PKGNAME}/${PKGNAME}/TcInstDcls.p_hi
-lib/${PKGNAME}/${PKGNAME}/TcInteract.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/TcInteract.hi
-lib/${PKGNAME}/${PKGNAME}/TcInteract.p_hi
-lib/${PKGNAME}/${PKGNAME}/TcMType.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/TcMType.hi
-lib/${PKGNAME}/${PKGNAME}/TcMType.p_hi
-lib/${PKGNAME}/${PKGNAME}/TcMatches.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/TcMatches.hi
-lib/${PKGNAME}/${PKGNAME}/TcMatches.p_hi
-lib/${PKGNAME}/${PKGNAME}/TcPat.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/TcPat.hi
-lib/${PKGNAME}/${PKGNAME}/TcPat.p_hi
-lib/${PKGNAME}/${PKGNAME}/TcRnDriver.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/TcRnDriver.hi
-lib/${PKGNAME}/${PKGNAME}/TcRnDriver.p_hi
-lib/${PKGNAME}/${PKGNAME}/TcRnMonad.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/TcRnMonad.hi
-lib/${PKGNAME}/${PKGNAME}/TcRnMonad.p_hi
-lib/${PKGNAME}/${PKGNAME}/TcRnTypes.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/TcRnTypes.hi
-lib/${PKGNAME}/${PKGNAME}/TcRnTypes.p_hi
-lib/${PKGNAME}/${PKGNAME}/TcRules.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/TcRules.hi
-lib/${PKGNAME}/${PKGNAME}/TcRules.p_hi
-lib/${PKGNAME}/${PKGNAME}/TcSMonad.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/TcSMonad.hi
-lib/${PKGNAME}/${PKGNAME}/TcSMonad.p_hi
-lib/${PKGNAME}/${PKGNAME}/TcSimplify.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/TcSimplify.hi
-lib/${PKGNAME}/${PKGNAME}/TcSimplify.p_hi
-lib/${PKGNAME}/${PKGNAME}/TcSplice.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/TcSplice.hi
-lib/${PKGNAME}/${PKGNAME}/TcSplice.p_hi
-lib/${PKGNAME}/${PKGNAME}/TcTyClsDecls.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/TcTyClsDecls.hi
-lib/${PKGNAME}/${PKGNAME}/TcTyClsDecls.p_hi
-lib/${PKGNAME}/${PKGNAME}/TcTyDecls.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/TcTyDecls.hi
-lib/${PKGNAME}/${PKGNAME}/TcTyDecls.p_hi
-lib/${PKGNAME}/${PKGNAME}/TcType.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/TcType.hi
-lib/${PKGNAME}/${PKGNAME}/TcType.p_hi
-lib/${PKGNAME}/${PKGNAME}/TcUnify.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/TcUnify.hi
-lib/${PKGNAME}/${PKGNAME}/TcUnify.p_hi
-lib/${PKGNAME}/${PKGNAME}/TidyPgm.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/TidyPgm.hi
-lib/${PKGNAME}/${PKGNAME}/TidyPgm.p_hi
-lib/${PKGNAME}/${PKGNAME}/TrieMap.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/TrieMap.hi
-lib/${PKGNAME}/${PKGNAME}/TrieMap.p_hi
-lib/${PKGNAME}/${PKGNAME}/TyCon.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/TyCon.hi
-lib/${PKGNAME}/${PKGNAME}/TyCon.p_hi
-lib/${PKGNAME}/${PKGNAME}/Type.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Type.hi
-lib/${PKGNAME}/${PKGNAME}/Type.p_hi
-lib/${PKGNAME}/${PKGNAME}/TypeRep.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/TypeRep.hi
-lib/${PKGNAME}/${PKGNAME}/TypeRep.p_hi
-lib/${PKGNAME}/${PKGNAME}/TysPrim.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/TysPrim.hi
-lib/${PKGNAME}/${PKGNAME}/TysPrim.p_hi
-lib/${PKGNAME}/${PKGNAME}/TysWiredIn.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/TysWiredIn.hi
-lib/${PKGNAME}/${PKGNAME}/TysWiredIn.p_hi
-lib/${PKGNAME}/${PKGNAME}/UnariseStg.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/UnariseStg.hi
-lib/${PKGNAME}/${PKGNAME}/UnariseStg.p_hi
-lib/${PKGNAME}/${PKGNAME}/Unify.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Unify.hi
-lib/${PKGNAME}/${PKGNAME}/Unify.p_hi
-lib/${PKGNAME}/${PKGNAME}/UniqFM.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/UniqFM.hi
-lib/${PKGNAME}/${PKGNAME}/UniqFM.p_hi
-lib/${PKGNAME}/${PKGNAME}/UniqSet.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/UniqSet.hi
-lib/${PKGNAME}/${PKGNAME}/UniqSet.p_hi
-lib/${PKGNAME}/${PKGNAME}/UniqSupply.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/UniqSupply.hi
-lib/${PKGNAME}/${PKGNAME}/UniqSupply.p_hi
-lib/${PKGNAME}/${PKGNAME}/Unique.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Unique.hi
-lib/${PKGNAME}/${PKGNAME}/Unique.p_hi
-lib/${PKGNAME}/${PKGNAME}/Util.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Util.hi
-lib/${PKGNAME}/${PKGNAME}/Util.p_hi
-lib/${PKGNAME}/${PKGNAME}/Var.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Var.hi
-lib/${PKGNAME}/${PKGNAME}/Var.p_hi
-lib/${PKGNAME}/${PKGNAME}/VarEnv.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/VarEnv.hi
-lib/${PKGNAME}/${PKGNAME}/VarEnv.p_hi
-lib/${PKGNAME}/${PKGNAME}/VarSet.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/VarSet.hi
-lib/${PKGNAME}/${PKGNAME}/VarSet.p_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise.hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise.p_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Builtins.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Builtins.hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Builtins.p_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Builtins/Base.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Builtins/Base.hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Builtins/Base.p_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Builtins/Initialise.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Builtins/Initialise.hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Builtins/Initialise.p_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Convert.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Convert.hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Convert.p_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Env.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Env.hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Env.p_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Exp.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Exp.hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Exp.p_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Generic/Description.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Generic/Description.hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Generic/Description.p_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Generic/PADict.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Generic/PADict.hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Generic/PADict.p_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Generic/PAMethods.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Generic/PAMethods.hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Generic/PAMethods.p_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Generic/PData.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Generic/PData.hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Generic/PData.p_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Monad.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Monad.hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Monad.p_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Monad/Base.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Monad/Base.hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Monad/Base.p_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Monad/Global.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Monad/Global.hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Monad/Global.p_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Monad/InstEnv.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Monad/InstEnv.hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Monad/InstEnv.p_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Monad/Local.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Monad/Local.hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Monad/Local.p_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Monad/Naming.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Monad/Naming.hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Monad/Naming.p_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Type/Classify.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Type/Classify.hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Type/Classify.p_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Type/Env.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Type/Env.hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Type/Env.p_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Type/TyConDecl.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Type/TyConDecl.hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Type/TyConDecl.p_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Type/Type.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Type/Type.hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Type/Type.p_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Utils.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Utils.hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Utils.p_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Utils/Base.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Utils/Base.hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Utils/Base.p_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Utils/Closure.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Utils/Closure.hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Utils/Closure.p_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Utils/Hoisting.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Utils/Hoisting.hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Utils/Hoisting.p_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Utils/PADict.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Utils/PADict.hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Utils/PADict.p_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Utils/Poly.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Utils/Poly.hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Utils/Poly.p_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Var.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Var.hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Var.p_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Vect.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Vect.hi
-lib/${PKGNAME}/${PKGNAME}/Vectorise/Vect.p_hi
-lib/${PKGNAME}/${PKGNAME}/WorkWrap.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/WorkWrap.hi
-lib/${PKGNAME}/${PKGNAME}/WorkWrap.p_hi
-lib/${PKGNAME}/${PKGNAME}/WwLib.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/WwLib.hi
-lib/${PKGNAME}/${PKGNAME}/WwLib.p_hi
-lib/${PKGNAME}/${PKGNAME}/X86/CodeGen.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/X86/CodeGen.hi
-lib/${PKGNAME}/${PKGNAME}/X86/CodeGen.p_hi
-lib/${PKGNAME}/${PKGNAME}/X86/Cond.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/X86/Cond.hi
-lib/${PKGNAME}/${PKGNAME}/X86/Cond.p_hi
-lib/${PKGNAME}/${PKGNAME}/X86/Instr.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/X86/Instr.hi
-lib/${PKGNAME}/${PKGNAME}/X86/Instr.p_hi
-lib/${PKGNAME}/${PKGNAME}/X86/Ppr.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/X86/Ppr.hi
-lib/${PKGNAME}/${PKGNAME}/X86/Ppr.p_hi
-lib/${PKGNAME}/${PKGNAME}/X86/RegInfo.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/X86/RegInfo.hi
-lib/${PKGNAME}/${PKGNAME}/X86/RegInfo.p_hi
-lib/${PKGNAME}/${PKGNAME}/X86/Regs.dyn_hi
-lib/${PKGNAME}/${PKGNAME}/X86/Regs.hi
-lib/${PKGNAME}/${PKGNAME}/X86/Regs.p_hi
-lib/${PKGNAME}/${PKGNAME}/include/HsVersions.h
-lib/${PKGNAME}/${PKGNAME}/include/ghc_boot_platform.h
-lib/${PKGNAME}/${PKGNAME}/libHS${PKGNAME}-ghc${PKGVERSION}.so
-lib/${PKGNAME}/${PKGNAME}/libHS${PKGNAME}.a
-lib/${PKGNAME}/${PKGNAME}/libHS${PKGNAME}_p.a
-lib/${PKGNAME}/ghc-pkg
-lib/${PKGNAME}/ghc-prim-0.3.0.0/GHC/CString.dyn_hi
-lib/${PKGNAME}/ghc-prim-0.3.0.0/GHC/CString.hi
-lib/${PKGNAME}/ghc-prim-0.3.0.0/GHC/CString.p_hi
-lib/${PKGNAME}/ghc-prim-0.3.0.0/GHC/Classes.dyn_hi
-lib/${PKGNAME}/ghc-prim-0.3.0.0/GHC/Classes.hi
-lib/${PKGNAME}/ghc-prim-0.3.0.0/GHC/Classes.p_hi
-lib/${PKGNAME}/ghc-prim-0.3.0.0/GHC/Debug.dyn_hi
-lib/${PKGNAME}/ghc-prim-0.3.0.0/GHC/Debug.hi
-lib/${PKGNAME}/ghc-prim-0.3.0.0/GHC/Debug.p_hi
-lib/${PKGNAME}/ghc-prim-0.3.0.0/GHC/IntWord64.dyn_hi
-lib/${PKGNAME}/ghc-prim-0.3.0.0/GHC/IntWord64.hi
-lib/${PKGNAME}/ghc-prim-0.3.0.0/GHC/IntWord64.p_hi
-lib/${PKGNAME}/ghc-prim-0.3.0.0/GHC/Magic.dyn_hi
-lib/${PKGNAME}/ghc-prim-0.3.0.0/GHC/Magic.hi
-lib/${PKGNAME}/ghc-prim-0.3.0.0/GHC/Magic.p_hi
-lib/${PKGNAME}/ghc-prim-0.3.0.0/GHC/PrimopWrappers.dyn_hi
-lib/${PKGNAME}/ghc-prim-0.3.0.0/GHC/PrimopWrappers.hi
-lib/${PKGNAME}/ghc-prim-0.3.0.0/GHC/PrimopWrappers.p_hi
-lib/${PKGNAME}/ghc-prim-0.3.0.0/GHC/Tuple.dyn_hi
-lib/${PKGNAME}/ghc-prim-0.3.0.0/GHC/Tuple.hi
-lib/${PKGNAME}/ghc-prim-0.3.0.0/GHC/Tuple.p_hi
-lib/${PKGNAME}/ghc-prim-0.3.0.0/GHC/Types.dyn_hi
-lib/${PKGNAME}/ghc-prim-0.3.0.0/GHC/Types.hi
-lib/${PKGNAME}/ghc-prim-0.3.0.0/GHC/Types.p_hi
-lib/${PKGNAME}/ghc-prim-0.3.0.0/HSghc-prim-0.3.0.0.o
-lib/${PKGNAME}/ghc-prim-0.3.0.0/libHSghc-prim-0.3.0.0-ghc${PKGVERSION}.so
-lib/${PKGNAME}/ghc-prim-0.3.0.0/libHSghc-prim-0.3.0.0.a
-lib/${PKGNAME}/ghc-prim-0.3.0.0/libHSghc-prim-0.3.0.0_p.a
-lib/${PKGNAME}/ghc-split
-lib/${PKGNAME}/ghc-usage.txt
-lib/${PKGNAME}/ghci-usage.txt
-lib/${PKGNAME}/haddock
-lib/${PKGNAME}/haskell2010-1.1.1.0/Control/Monad.dyn_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Control/Monad.hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Control/Monad.p_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Array.dyn_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Array.hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Array.p_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Bits.dyn_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Bits.hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Bits.p_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Char.dyn_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Char.hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Char.p_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Complex.dyn_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Complex.hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Complex.p_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Int.dyn_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Int.hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Int.p_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Ix.dyn_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Ix.hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Ix.p_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Data/List.dyn_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Data/List.hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Data/List.p_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Maybe.dyn_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Maybe.hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Maybe.p_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Ratio.dyn_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Ratio.hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Ratio.p_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Word.dyn_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Word.hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Word.p_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign.dyn_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign.hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign.p_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/C.dyn_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/C.hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/C.p_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/C/Error.dyn_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/C/Error.hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/C/Error.p_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/C/String.dyn_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/C/String.hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/C/String.p_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/C/Types.dyn_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/C/Types.hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/C/Types.p_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/ForeignPtr.dyn_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/ForeignPtr.hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/ForeignPtr.p_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/Marshal.dyn_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/Marshal.hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/Marshal.p_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/Marshal/Alloc.dyn_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/Marshal/Alloc.hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/Marshal/Alloc.p_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/Marshal/Array.dyn_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/Marshal/Array.hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/Marshal/Array.p_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/Marshal/Error.dyn_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/Marshal/Error.hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/Marshal/Error.p_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/Marshal/Utils.dyn_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/Marshal/Utils.hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/Marshal/Utils.p_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/Ptr.dyn_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/Ptr.hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/Ptr.p_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/StablePtr.dyn_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/StablePtr.hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/StablePtr.p_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/Storable.dyn_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/Storable.hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/Storable.p_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/HShaskell2010-1.1.1.0.o
-lib/${PKGNAME}/haskell2010-1.1.1.0/Numeric.dyn_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Numeric.hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Numeric.p_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Prelude.dyn_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Prelude.hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/Prelude.p_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/System/Environment.dyn_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/System/Environment.hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/System/Environment.p_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/System/Exit.dyn_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/System/Exit.hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/System/Exit.p_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/System/IO.dyn_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/System/IO.hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/System/IO.p_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/System/IO/Error.dyn_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/System/IO/Error.hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/System/IO/Error.p_hi
-lib/${PKGNAME}/haskell2010-1.1.1.0/libHShaskell2010-1.1.1.0-ghc${PKGVERSION}.so
-lib/${PKGNAME}/haskell2010-1.1.1.0/libHShaskell2010-1.1.1.0.a
-lib/${PKGNAME}/haskell2010-1.1.1.0/libHShaskell2010-1.1.1.0_p.a
-lib/${PKGNAME}/haskell98-2.0.0.2/Array.dyn_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Array.hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Array.p_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Bits.dyn_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Bits.hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Bits.p_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/CError.dyn_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/CError.hi
-lib/${PKGNAME}/haskell98-2.0.0.2/CError.p_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/CForeign.dyn_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/CForeign.hi
-lib/${PKGNAME}/haskell98-2.0.0.2/CForeign.p_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/CPUTime.dyn_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/CPUTime.hi
-lib/${PKGNAME}/haskell98-2.0.0.2/CPUTime.p_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/CString.dyn_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/CString.hi
-lib/${PKGNAME}/haskell98-2.0.0.2/CString.p_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/CTypes.dyn_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/CTypes.hi
-lib/${PKGNAME}/haskell98-2.0.0.2/CTypes.p_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Char.dyn_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Char.hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Char.p_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Complex.dyn_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Complex.hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Complex.p_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Directory.dyn_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Directory.hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Directory.p_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/ForeignPtr.dyn_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/ForeignPtr.hi
-lib/${PKGNAME}/haskell98-2.0.0.2/ForeignPtr.p_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/HShaskell98-2.0.0.2.o
-lib/${PKGNAME}/haskell98-2.0.0.2/IO.dyn_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/IO.hi
-lib/${PKGNAME}/haskell98-2.0.0.2/IO.p_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Int.dyn_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Int.hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Int.p_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Ix.dyn_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Ix.hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Ix.p_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/List.dyn_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/List.hi
-lib/${PKGNAME}/haskell98-2.0.0.2/List.p_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Locale.dyn_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Locale.hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Locale.p_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/MarshalAlloc.dyn_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/MarshalAlloc.hi
-lib/${PKGNAME}/haskell98-2.0.0.2/MarshalAlloc.p_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/MarshalArray.dyn_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/MarshalArray.hi
-lib/${PKGNAME}/haskell98-2.0.0.2/MarshalArray.p_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/MarshalError.dyn_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/MarshalError.hi
-lib/${PKGNAME}/haskell98-2.0.0.2/MarshalError.p_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/MarshalUtils.dyn_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/MarshalUtils.hi
-lib/${PKGNAME}/haskell98-2.0.0.2/MarshalUtils.p_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Maybe.dyn_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Maybe.hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Maybe.p_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Monad.dyn_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Monad.hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Monad.p_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Numeric.dyn_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Numeric.hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Numeric.p_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Prelude.dyn_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Prelude.hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Prelude.p_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Ptr.dyn_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Ptr.hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Ptr.p_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Random.dyn_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Random.hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Random.p_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Ratio.dyn_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Ratio.hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Ratio.p_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/StablePtr.dyn_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/StablePtr.hi
-lib/${PKGNAME}/haskell98-2.0.0.2/StablePtr.p_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Storable.dyn_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Storable.hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Storable.p_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/System.dyn_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/System.hi
-lib/${PKGNAME}/haskell98-2.0.0.2/System.p_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Time.dyn_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Time.hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Time.p_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Word.dyn_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Word.hi
-lib/${PKGNAME}/haskell98-2.0.0.2/Word.p_hi
-lib/${PKGNAME}/haskell98-2.0.0.2/libHShaskell98-2.0.0.2-ghc${PKGVERSION}.so
-lib/${PKGNAME}/haskell98-2.0.0.2/libHShaskell98-2.0.0.2.a
-lib/${PKGNAME}/haskell98-2.0.0.2/libHShaskell98-2.0.0.2_p.a
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl.dyn_hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl.hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl.p_hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Block.dyn_hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Block.hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Block.p_hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Checkpoint.dyn_hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Checkpoint.hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Checkpoint.p_hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Collections.dyn_hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Collections.hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Collections.p_hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Combinators.dyn_hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Combinators.hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Combinators.p_hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Dataflow.dyn_hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Dataflow.hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Dataflow.p_hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Debug.dyn_hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Debug.hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Debug.p_hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Fuel.dyn_hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Fuel.hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Fuel.p_hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Graph.dyn_hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Graph.hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Graph.p_hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Internals.dyn_hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Internals.hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Internals.p_hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Label.dyn_hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Label.hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Label.p_hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/MkGraph.dyn_hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/MkGraph.hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/MkGraph.p_hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Passes/DList.dyn_hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Passes/DList.hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Passes/DList.p_hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Passes/Dominator.dyn_hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Passes/Dominator.hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Passes/Dominator.p_hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Pointed.dyn_hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Pointed.hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Pointed.p_hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Shape.dyn_hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Shape.hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Shape.p_hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Show.dyn_hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Show.hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Show.p_hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Unique.dyn_hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Unique.hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Unique.p_hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Wrappers.dyn_hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Wrappers.hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Wrappers.p_hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/XUtil.dyn_hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/XUtil.hi
-lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/XUtil.p_hi
-lib/${PKGNAME}/hoopl-3.9.0.0/HShoopl-3.9.0.0.o
-lib/${PKGNAME}/hoopl-3.9.0.0/libHShoopl-3.9.0.0-ghc${PKGVERSION}.so
-lib/${PKGNAME}/hoopl-3.9.0.0/libHShoopl-3.9.0.0.a
-lib/${PKGNAME}/hoopl-3.9.0.0/libHShoopl-3.9.0.0_p.a
-lib/${PKGNAME}/hpc-0.6.0.0/HShpc-0.6.0.0.o
-lib/${PKGNAME}/hpc-0.6.0.0/Trace/Hpc/Mix.dyn_hi
-lib/${PKGNAME}/hpc-0.6.0.0/Trace/Hpc/Mix.hi
-lib/${PKGNAME}/hpc-0.6.0.0/Trace/Hpc/Mix.p_hi
-lib/${PKGNAME}/hpc-0.6.0.0/Trace/Hpc/Reflect.dyn_hi
-lib/${PKGNAME}/hpc-0.6.0.0/Trace/Hpc/Reflect.hi
-lib/${PKGNAME}/hpc-0.6.0.0/Trace/Hpc/Reflect.p_hi
-lib/${PKGNAME}/hpc-0.6.0.0/Trace/Hpc/Tix.dyn_hi
-lib/${PKGNAME}/hpc-0.6.0.0/Trace/Hpc/Tix.hi
-lib/${PKGNAME}/hpc-0.6.0.0/Trace/Hpc/Tix.p_hi
-lib/${PKGNAME}/hpc-0.6.0.0/Trace/Hpc/Util.dyn_hi
-lib/${PKGNAME}/hpc-0.6.0.0/Trace/Hpc/Util.hi
-lib/${PKGNAME}/hpc-0.6.0.0/Trace/Hpc/Util.p_hi
-lib/${PKGNAME}/hpc-0.6.0.0/libHShpc-0.6.0.0-ghc${PKGVERSION}.so
-lib/${PKGNAME}/hpc-0.6.0.0/libHShpc-0.6.0.0.a
-lib/${PKGNAME}/hpc-0.6.0.0/libHShpc-0.6.0.0_p.a
-lib/${PKGNAME}/hsc2hs
-lib/${PKGNAME}/html/Classic.theme/haskell_icon.gif
-lib/${PKGNAME}/html/Classic.theme/minus.gif
-lib/${PKGNAME}/html/Classic.theme/plus.gif
-lib/${PKGNAME}/html/Classic.theme/xhaddock.css
-lib/${PKGNAME}/html/Ocean.std-theme/hslogo-16.png
-lib/${PKGNAME}/html/Ocean.std-theme/minus.gif
-lib/${PKGNAME}/html/Ocean.std-theme/ocean.css
-lib/${PKGNAME}/html/Ocean.std-theme/plus.gif
-lib/${PKGNAME}/html/Ocean.std-theme/synopsis.png
-lib/${PKGNAME}/html/frames.html
-lib/${PKGNAME}/html/haddock-util.js
-lib/${PKGNAME}/include/Cmm.h
-lib/${PKGNAME}/include/DerivedConstants.h
-lib/${PKGNAME}/include/GHCConstants.h
-lib/${PKGNAME}/include/HsFFI.h
-lib/${PKGNAME}/include/MachDeps.h
-lib/${PKGNAME}/include/Rts.h
-lib/${PKGNAME}/include/RtsAPI.h
-lib/${PKGNAME}/include/Stg.h
-lib/${PKGNAME}/include/ffi.h
-lib/${PKGNAME}/include/ffitarget.h
-lib/${PKGNAME}/include/ghcautoconf.h
-lib/${PKGNAME}/include/ghcconfig.h
-lib/${PKGNAME}/include/ghcplatform.h
-lib/${PKGNAME}/include/rts/Adjustor.h
-lib/${PKGNAME}/include/rts/BlockSignals.h
-lib/${PKGNAME}/include/rts/Bytecodes.h
-lib/${PKGNAME}/include/rts/Config.h
-lib/${PKGNAME}/include/rts/Constants.h
-lib/${PKGNAME}/include/rts/EventLogFormat.h
-lib/${PKGNAME}/include/rts/FileLock.h
-lib/${PKGNAME}/include/rts/Flags.h
-lib/${PKGNAME}/include/rts/GetTime.h
-lib/${PKGNAME}/include/rts/Globals.h
-lib/${PKGNAME}/include/rts/Hooks.h
-lib/${PKGNAME}/include/rts/Hpc.h
-lib/${PKGNAME}/include/rts/IOManager.h
-lib/${PKGNAME}/include/rts/Linker.h
-lib/${PKGNAME}/include/rts/Main.h
-lib/${PKGNAME}/include/rts/Messages.h
-lib/${PKGNAME}/include/rts/OSThreads.h
-lib/${PKGNAME}/include/rts/Parallel.h
-lib/${PKGNAME}/include/rts/PrimFloat.h
-lib/${PKGNAME}/include/rts/Signals.h
-lib/${PKGNAME}/include/rts/SpinLock.h
-lib/${PKGNAME}/include/rts/Stable.h
-lib/${PKGNAME}/include/rts/TTY.h
-lib/${PKGNAME}/include/rts/Threads.h
-lib/${PKGNAME}/include/rts/Ticky.h
-lib/${PKGNAME}/include/rts/Timer.h
-lib/${PKGNAME}/include/rts/Types.h
-lib/${PKGNAME}/include/rts/Utils.h
-lib/${PKGNAME}/include/rts/prof/CCS.h
-lib/${PKGNAME}/include/rts/prof/LDV.h
-lib/${PKGNAME}/include/rts/storage/Block.h
-lib/${PKGNAME}/include/rts/storage/ClosureMacros.h
-lib/${PKGNAME}/include/rts/storage/ClosureTypes.h
-lib/${PKGNAME}/include/rts/storage/Closures.h
-lib/${PKGNAME}/include/rts/storage/FunTypes.h
-lib/${PKGNAME}/include/rts/storage/GC.h
-lib/${PKGNAME}/include/rts/storage/InfoTables.h
-lib/${PKGNAME}/include/rts/storage/Liveness.h
-lib/${PKGNAME}/include/rts/storage/MBlock.h
-lib/${PKGNAME}/include/rts/storage/SMPClosureOps.h
-lib/${PKGNAME}/include/rts/storage/TSO.h
-lib/${PKGNAME}/include/stg/DLL.h
-lib/${PKGNAME}/include/stg/MachRegs.h
-lib/${PKGNAME}/include/stg/MiscClosures.h
-lib/${PKGNAME}/include/stg/Regs.h
-lib/${PKGNAME}/include/stg/SMP.h
-lib/${PKGNAME}/include/stg/TailCalls.h
-lib/${PKGNAME}/include/stg/Ticky.h
-lib/${PKGNAME}/include/stg/Types.h
-lib/${PKGNAME}/integer-gmp-0.5.0.0/GHC/Integer.dyn_hi
-lib/${PKGNAME}/integer-gmp-0.5.0.0/GHC/Integer.hi
-lib/${PKGNAME}/integer-gmp-0.5.0.0/GHC/Integer.p_hi
-lib/${PKGNAME}/integer-gmp-0.5.0.0/GHC/Integer/GMP/Internals.dyn_hi
-lib/${PKGNAME}/integer-gmp-0.5.0.0/GHC/Integer/GMP/Internals.hi
-lib/${PKGNAME}/integer-gmp-0.5.0.0/GHC/Integer/GMP/Internals.p_hi
-lib/${PKGNAME}/integer-gmp-0.5.0.0/GHC/Integer/GMP/Prim.dyn_hi
-lib/${PKGNAME}/integer-gmp-0.5.0.0/GHC/Integer/GMP/Prim.hi
-lib/${PKGNAME}/integer-gmp-0.5.0.0/GHC/Integer/GMP/Prim.p_hi
-lib/${PKGNAME}/integer-gmp-0.5.0.0/GHC/Integer/Logarithms.dyn_hi
-lib/${PKGNAME}/integer-gmp-0.5.0.0/GHC/Integer/Logarithms.hi
-lib/${PKGNAME}/integer-gmp-0.5.0.0/GHC/Integer/Logarithms.p_hi
-lib/${PKGNAME}/integer-gmp-0.5.0.0/GHC/Integer/Logarithms/Internals.dyn_hi
-lib/${PKGNAME}/integer-gmp-0.5.0.0/GHC/Integer/Logarithms/Internals.hi
-lib/${PKGNAME}/integer-gmp-0.5.0.0/GHC/Integer/Logarithms/Internals.p_hi
-lib/${PKGNAME}/integer-gmp-0.5.0.0/GHC/Integer/Type.dyn_hi
-lib/${PKGNAME}/integer-gmp-0.5.0.0/GHC/Integer/Type.hi
-lib/${PKGNAME}/integer-gmp-0.5.0.0/GHC/Integer/Type.p_hi
-lib/${PKGNAME}/integer-gmp-0.5.0.0/HSinteger-gmp-0.5.0.0.o
-lib/${PKGNAME}/integer-gmp-0.5.0.0/libHSinteger-gmp-0.5.0.0-ghc${PKGVERSION}.so
-lib/${PKGNAME}/integer-gmp-0.5.0.0/libHSinteger-gmp-0.5.0.0.a
-lib/${PKGNAME}/integer-gmp-0.5.0.0/libHSinteger-gmp-0.5.0.0_p.a
-lib/${PKGNAME}/latex/haddock.sty
-lib/${PKGNAME}/libHSrts-ghc${PKGVERSION}.so
-lib/${PKGNAME}/libHSrts.a
-lib/${PKGNAME}/libHSrts_debug-ghc${PKGVERSION}.so
-lib/${PKGNAME}/libHSrts_debug.a
-lib/${PKGNAME}/libHSrts_l.a
-lib/${PKGNAME}/libHSrts_p.a
-lib/${PKGNAME}/libHSrts_thr-ghc${PKGVERSION}.so
-lib/${PKGNAME}/libHSrts_thr.a
-lib/${PKGNAME}/libHSrts_thr_debug-ghc${PKGVERSION}.so
-lib/${PKGNAME}/libHSrts_thr_debug.a
-lib/${PKGNAME}/libHSrts_thr_l.a
-lib/${PKGNAME}/libHSrts_thr_p.a
-lib/${PKGNAME}/libffi.la
-lib/${PKGNAME}/old-locale-1.0.0.5/HSold-locale-1.0.0.5.o
-lib/${PKGNAME}/old-locale-1.0.0.5/System/Locale.dyn_hi
-lib/${PKGNAME}/old-locale-1.0.0.5/System/Locale.hi
-lib/${PKGNAME}/old-locale-1.0.0.5/System/Locale.p_hi
-lib/${PKGNAME}/old-locale-1.0.0.5/libHSold-locale-1.0.0.5-ghc${PKGVERSION}.so
-lib/${PKGNAME}/old-locale-1.0.0.5/libHSold-locale-1.0.0.5.a
-lib/${PKGNAME}/old-locale-1.0.0.5/libHSold-locale-1.0.0.5_p.a
-lib/${PKGNAME}/old-time-1.1.0.1/HSold-time-1.1.0.1.o
-lib/${PKGNAME}/old-time-1.1.0.1/System/Time.dyn_hi
-lib/${PKGNAME}/old-time-1.1.0.1/System/Time.hi
-lib/${PKGNAME}/old-time-1.1.0.1/System/Time.p_hi
-lib/${PKGNAME}/old-time-1.1.0.1/include/HsTime.h
-lib/${PKGNAME}/old-time-1.1.0.1/include/HsTimeConfig.h
-lib/${PKGNAME}/old-time-1.1.0.1/libHSold-time-1.1.0.1-ghc${PKGVERSION}.so
-lib/${PKGNAME}/old-time-1.1.0.1/libHSold-time-1.1.0.1.a
-lib/${PKGNAME}/old-time-1.1.0.1/libHSold-time-1.1.0.1_p.a
-lib/${PKGNAME}/pretty-1.1.1.0/HSpretty-1.1.1.0.o
-lib/${PKGNAME}/pretty-1.1.1.0/Text/PrettyPrint.dyn_hi
-lib/${PKGNAME}/pretty-1.1.1.0/Text/PrettyPrint.hi
-lib/${PKGNAME}/pretty-1.1.1.0/Text/PrettyPrint.p_hi
-lib/${PKGNAME}/pretty-1.1.1.0/Text/PrettyPrint/HughesPJ.dyn_hi
-lib/${PKGNAME}/pretty-1.1.1.0/Text/PrettyPrint/HughesPJ.hi
-lib/${PKGNAME}/pretty-1.1.1.0/Text/PrettyPrint/HughesPJ.p_hi
-lib/${PKGNAME}/pretty-1.1.1.0/libHSpretty-1.1.1.0-ghc${PKGVERSION}.so
-lib/${PKGNAME}/pretty-1.1.1.0/libHSpretty-1.1.1.0.a
-lib/${PKGNAME}/pretty-1.1.1.0/libHSpretty-1.1.1.0_p.a
-lib/${PKGNAME}/process-1.1.0.2/HSprocess-1.1.0.2.o
-lib/${PKGNAME}/process-1.1.0.2/System/Cmd.dyn_hi
-lib/${PKGNAME}/process-1.1.0.2/System/Cmd.hi
-lib/${PKGNAME}/process-1.1.0.2/System/Cmd.p_hi
-lib/${PKGNAME}/process-1.1.0.2/System/Process.dyn_hi
-lib/${PKGNAME}/process-1.1.0.2/System/Process.hi
-lib/${PKGNAME}/process-1.1.0.2/System/Process.p_hi
-lib/${PKGNAME}/process-1.1.0.2/System/Process/Internals.dyn_hi
-lib/${PKGNAME}/process-1.1.0.2/System/Process/Internals.hi
-lib/${PKGNAME}/process-1.1.0.2/System/Process/Internals.p_hi
-lib/${PKGNAME}/process-1.1.0.2/include/HsProcessConfig.h
-lib/${PKGNAME}/process-1.1.0.2/include/processFlags.h
-lib/${PKGNAME}/process-1.1.0.2/include/runProcess.h
-lib/${PKGNAME}/process-1.1.0.2/libHSprocess-1.1.0.2-ghc${PKGVERSION}.so
-lib/${PKGNAME}/process-1.1.0.2/libHSprocess-1.1.0.2.a
-lib/${PKGNAME}/process-1.1.0.2/libHSprocess-1.1.0.2_p.a
-lib/${PKGNAME}/runghc
-lib/${PKGNAME}/settings
-lib/${PKGNAME}/template-haskell-2.8.0.0/HStemplate-haskell-2.8.0.0.o
-lib/${PKGNAME}/template-haskell-2.8.0.0/Language/Haskell/TH.dyn_hi
-lib/${PKGNAME}/template-haskell-2.8.0.0/Language/Haskell/TH.hi
-lib/${PKGNAME}/template-haskell-2.8.0.0/Language/Haskell/TH.p_hi
-lib/${PKGNAME}/template-haskell-2.8.0.0/Language/Haskell/TH/Lib.dyn_hi
-lib/${PKGNAME}/template-haskell-2.8.0.0/Language/Haskell/TH/Lib.hi
-lib/${PKGNAME}/template-haskell-2.8.0.0/Language/Haskell/TH/Lib.p_hi
-lib/${PKGNAME}/template-haskell-2.8.0.0/Language/Haskell/TH/Ppr.dyn_hi
-lib/${PKGNAME}/template-haskell-2.8.0.0/Language/Haskell/TH/Ppr.hi
-lib/${PKGNAME}/template-haskell-2.8.0.0/Language/Haskell/TH/Ppr.p_hi
-lib/${PKGNAME}/template-haskell-2.8.0.0/Language/Haskell/TH/PprLib.dyn_hi
-lib/${PKGNAME}/template-haskell-2.8.0.0/Language/Haskell/TH/PprLib.hi
-lib/${PKGNAME}/template-haskell-2.8.0.0/Language/Haskell/TH/PprLib.p_hi
-lib/${PKGNAME}/template-haskell-2.8.0.0/Language/Haskell/TH/Quote.dyn_hi
-lib/${PKGNAME}/template-haskell-2.8.0.0/Language/Haskell/TH/Quote.hi
-lib/${PKGNAME}/template-haskell-2.8.0.0/Language/Haskell/TH/Quote.p_hi
-lib/${PKGNAME}/template-haskell-2.8.0.0/Language/Haskell/TH/Syntax.dyn_hi
-lib/${PKGNAME}/template-haskell-2.8.0.0/Language/Haskell/TH/Syntax.hi
-lib/${PKGNAME}/template-haskell-2.8.0.0/Language/Haskell/TH/Syntax.p_hi
-lib/${PKGNAME}/template-haskell-2.8.0.0/libHStemplate-haskell-2.8.0.0-ghc${PKGVERSION}.so
-lib/${PKGNAME}/template-haskell-2.8.0.0/libHStemplate-haskell-2.8.0.0.a
-lib/${PKGNAME}/template-haskell-2.8.0.0/libHStemplate-haskell-2.8.0.0_p.a
-lib/${PKGNAME}/template-hsc.h
-lib/${PKGNAME}/time-1.4.0.1/Data/Time.dyn_hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time.hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time.p_hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar.dyn_hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar.hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar.p_hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/Days.dyn_hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/Days.hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/Days.p_hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/Easter.dyn_hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/Easter.hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/Easter.p_hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/Gregorian.dyn_hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/Gregorian.hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/Gregorian.p_hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/Julian.dyn_hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/Julian.hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/Julian.p_hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/JulianYearDay.dyn_hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/JulianYearDay.hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/JulianYearDay.p_hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/MonthDay.dyn_hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/MonthDay.hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/MonthDay.p_hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/OrdinalDate.dyn_hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/OrdinalDate.hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/OrdinalDate.p_hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/Private.dyn_hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/Private.hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/Private.p_hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/WeekDate.dyn_hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/WeekDate.hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/WeekDate.p_hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Clock.dyn_hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Clock.hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Clock.p_hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Clock/CTimeval.dyn_hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Clock/CTimeval.hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Clock/CTimeval.p_hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Clock/POSIX.dyn_hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Clock/POSIX.hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Clock/POSIX.p_hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Clock/Scale.dyn_hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Clock/Scale.hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Clock/Scale.p_hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Clock/TAI.dyn_hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Clock/TAI.hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Clock/TAI.p_hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Clock/UTC.dyn_hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Clock/UTC.hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Clock/UTC.p_hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Clock/UTCDiff.dyn_hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Clock/UTCDiff.hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Clock/UTCDiff.p_hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Format.dyn_hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Format.hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Format.p_hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Format/Parse.dyn_hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Format/Parse.hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/Format/Parse.p_hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/LocalTime.dyn_hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/LocalTime.hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/LocalTime.p_hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/LocalTime/LocalTime.dyn_hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/LocalTime/LocalTime.hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/LocalTime/LocalTime.p_hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/LocalTime/TimeOfDay.dyn_hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/LocalTime/TimeOfDay.hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/LocalTime/TimeOfDay.p_hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/LocalTime/TimeZone.dyn_hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/LocalTime/TimeZone.hi
-lib/${PKGNAME}/time-1.4.0.1/Data/Time/LocalTime/TimeZone.p_hi
-lib/${PKGNAME}/time-1.4.0.1/HStime-1.4.0.1.o
-lib/${PKGNAME}/time-1.4.0.1/include/HsTime.h
-lib/${PKGNAME}/time-1.4.0.1/include/HsTimeConfig.h
-lib/${PKGNAME}/time-1.4.0.1/libHStime-1.4.0.1-ghc${PKGVERSION}.so
-lib/${PKGNAME}/time-1.4.0.1/libHStime-1.4.0.1.a
-lib/${PKGNAME}/time-1.4.0.1/libHStime-1.4.0.1_p.a
-lib/${PKGNAME}/unix-2.6.0.1/HSunix-2.6.0.1.o
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix.dyn_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix.hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix.p_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/ByteString.dyn_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/ByteString.hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/ByteString.p_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/ByteString/FilePath.dyn_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/ByteString/FilePath.hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/ByteString/FilePath.p_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Directory.dyn_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Directory.hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Directory.p_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Directory/ByteString.dyn_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Directory/ByteString.hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Directory/ByteString.p_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Directory/Common.dyn_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Directory/Common.hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Directory/Common.p_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/DynamicLinker.dyn_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/DynamicLinker.hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/DynamicLinker.p_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/DynamicLinker/ByteString.dyn_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/DynamicLinker/ByteString.hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/DynamicLinker/ByteString.p_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/DynamicLinker/Common.dyn_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/DynamicLinker/Common.hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/DynamicLinker/Common.p_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/DynamicLinker/Module.dyn_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/DynamicLinker/Module.hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/DynamicLinker/Module.p_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/DynamicLinker/Module/ByteString.dyn_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/DynamicLinker/Module/ByteString.hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/DynamicLinker/Module/ByteString.p_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/DynamicLinker/Prim.dyn_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/DynamicLinker/Prim.hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/DynamicLinker/Prim.p_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Env.dyn_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Env.hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Env.p_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Env/ByteString.dyn_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Env/ByteString.hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Env/ByteString.p_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Error.dyn_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Error.hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Error.p_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Files.dyn_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Files.hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Files.p_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Files/ByteString.dyn_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Files/ByteString.hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Files/ByteString.p_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Files/Common.dyn_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Files/Common.hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Files/Common.p_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/IO.dyn_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/IO.hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/IO.p_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/IO/ByteString.dyn_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/IO/ByteString.hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/IO/ByteString.p_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/IO/Common.dyn_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/IO/Common.hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/IO/Common.p_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Process.dyn_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Process.hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Process.p_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Process/ByteString.dyn_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Process/ByteString.hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Process/ByteString.p_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Process/Common.dyn_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Process/Common.hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Process/Common.p_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Process/Internals.dyn_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Process/Internals.hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Process/Internals.p_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Resource.dyn_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Resource.hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Resource.p_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Semaphore.dyn_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Semaphore.hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Semaphore.p_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/SharedMem.dyn_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/SharedMem.hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/SharedMem.p_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Signals.dyn_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Signals.hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Signals.p_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Signals/Exts.dyn_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Signals/Exts.hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Signals/Exts.p_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Temp.dyn_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Temp.hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Temp.p_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Temp/ByteString.dyn_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Temp/ByteString.hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Temp/ByteString.p_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Terminal.dyn_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Terminal.hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Terminal.p_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Terminal/ByteString.dyn_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Terminal/ByteString.hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Terminal/ByteString.p_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Terminal/Common.dyn_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Terminal/Common.hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Terminal/Common.p_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Time.dyn_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Time.hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Time.p_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Unistd.dyn_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Unistd.hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Unistd.p_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/User.dyn_hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/User.hi
-lib/${PKGNAME}/unix-2.6.0.1/System/Posix/User.p_hi
-lib/${PKGNAME}/unix-2.6.0.1/include/HsUnix.h
-lib/${PKGNAME}/unix-2.6.0.1/include/HsUnixConfig.h
-lib/${PKGNAME}/unix-2.6.0.1/include/execvpe.h
-lib/${PKGNAME}/unix-2.6.0.1/libHSunix-2.6.0.1-ghc${PKGVERSION}.so
-lib/${PKGNAME}/unix-2.6.0.1/libHSunix-2.6.0.1.a
-lib/${PKGNAME}/unix-2.6.0.1/libHSunix-2.6.0.1_p.a
-lib/${PKGNAME}/unlit
-man/man1/ghc.1
-share/doc/ghc/html/haddock/ch01s03.html
-share/doc/ghc/html/haddock/ch01s04.html
-share/doc/ghc/html/haddock/ch03s02.html
-share/doc/ghc/html/haddock/ch03s03.html
-share/doc/ghc/html/haddock/ch03s04.html
-share/doc/ghc/html/haddock/ch03s05.html
-share/doc/ghc/html/haddock/ch03s08.html
-share/doc/ghc/html/haddock/fptools.css
-share/doc/ghc/html/haddock/hyperlinking.html
-share/doc/ghc/html/haddock/index.html
-share/doc/ghc/html/haddock/introduction.html
-share/doc/ghc/html/haddock/invoking.html
-share/doc/ghc/html/haddock/ix01.html
-share/doc/ghc/html/haddock/license.html
-share/doc/ghc/html/haddock/markup.html
-share/doc/ghc/html/haddock/module-attributes.html
-share/doc/ghc/html/index.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Cabal.haddock
-share/doc/ghc/html/libraries/Cabal-1.16.0/Cabal.haddock.t
-share/doc/ghc/html/libraries/Cabal-1.16.0/Cabal.txt
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Compat-ReadP.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Compiler.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-InstalledPackageInfo.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-License.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Make.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-ModuleName.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Package.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-PackageDescription-Check.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-PackageDescription-Configuration.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-PackageDescription-Parse.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-PackageDescription-PrettyPrint.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-PackageDescription.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-ParseUtils.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-ReadE.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Bench.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Build-Macros.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Build-PathsModule.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Build.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-BuildPaths.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Command.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Compiler.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Configure.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-GHC.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Haddock.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Hpc.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Hugs.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Install.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-InstallDirs.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-JHC.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-LHC.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-LocalBuildInfo.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-NHC.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-PackageIndex.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-PreProcess-Unlit.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-PreProcess.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Program-Ar.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Program-Builtin.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Program-Db.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Program-GHC.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Program-HcPkg.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Program-Hpc.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Program-Ld.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Program-Run.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Program-Script.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Program-Types.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Program.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Register.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Setup.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-SrcDist.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Test.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-UHC.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-UserHooks.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Utils.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-System.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-TestSuite.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Text.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Verbosity.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Version.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/LICENSE
-share/doc/ghc/html/libraries/Cabal-1.16.0/Language-Haskell-Extension.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-43.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-60.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-A.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-All.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-B.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-C.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-D.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-E.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-F.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-G.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-H.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-I.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-J.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-K.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-L.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-M.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-N.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-O.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-P.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-Q.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-R.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-S.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-T.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-U.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-V.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-W.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-X.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-Y.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/frames.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/haddock-util.js
-share/doc/ghc/html/libraries/Cabal-1.16.0/hslogo-16.png
-share/doc/ghc/html/libraries/Cabal-1.16.0/index-frames.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/index.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Compat-ReadP.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Compiler.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-InstalledPackageInfo.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-License.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Make.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-ModuleName.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Package.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-PackageDescription-Check.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-PackageDescription-Configuration.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-PackageDescription-Parse.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-PackageDescription-PrettyPrint.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-PackageDescription.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-ParseUtils.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-ReadE.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Bench.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Build-Macros.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Build-PathsModule.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Build.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-BuildPaths.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Command.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Compiler.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Configure.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-GHC.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Haddock.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Hpc.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Hugs.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Install.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-InstallDirs.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-JHC.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-LHC.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-LocalBuildInfo.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-NHC.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-PackageIndex.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-PreProcess-Unlit.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-PreProcess.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Program-Ar.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Program-Builtin.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Program-Db.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Program-GHC.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Program-HcPkg.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Program-Hpc.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Program-Ld.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Program-Run.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Program-Script.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Program-Types.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Program.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Register.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Setup.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-SrcDist.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Test.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-UHC.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-UserHooks.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Utils.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-System.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-TestSuite.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Text.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Verbosity.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Version.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Language-Haskell-Extension.html
-share/doc/ghc/html/libraries/Cabal-1.16.0/minus.gif
-share/doc/ghc/html/libraries/Cabal-1.16.0/ocean.css
-share/doc/ghc/html/libraries/Cabal-1.16.0/plus.gif
-share/doc/ghc/html/libraries/Cabal-1.16.0/synopsis.png
-share/doc/ghc/html/libraries/array-0.4.0.1/Data-Array-IArray.html
-share/doc/ghc/html/libraries/array-0.4.0.1/Data-Array-IO-Safe.html
-share/doc/ghc/html/libraries/array-0.4.0.1/Data-Array-IO.html
-share/doc/ghc/html/libraries/array-0.4.0.1/Data-Array-MArray-Safe.html
-share/doc/ghc/html/libraries/array-0.4.0.1/Data-Array-MArray.html
-share/doc/ghc/html/libraries/array-0.4.0.1/Data-Array-ST-Safe.html
-share/doc/ghc/html/libraries/array-0.4.0.1/Data-Array-ST.html
-share/doc/ghc/html/libraries/array-0.4.0.1/Data-Array-Storable-Safe.html
-share/doc/ghc/html/libraries/array-0.4.0.1/Data-Array-Storable.html
-share/doc/ghc/html/libraries/array-0.4.0.1/Data-Array-Unboxed.html
-share/doc/ghc/html/libraries/array-0.4.0.1/Data-Array-Unsafe.html
-share/doc/ghc/html/libraries/array-0.4.0.1/Data-Array.html
-share/doc/ghc/html/libraries/array-0.4.0.1/LICENSE
-share/doc/ghc/html/libraries/array-0.4.0.1/array.haddock
-share/doc/ghc/html/libraries/array-0.4.0.1/array.haddock.t
-share/doc/ghc/html/libraries/array-0.4.0.1/array.txt
-share/doc/ghc/html/libraries/array-0.4.0.1/doc-index.html
-share/doc/ghc/html/libraries/array-0.4.0.1/frames.html
-share/doc/ghc/html/libraries/array-0.4.0.1/haddock-util.js
-share/doc/ghc/html/libraries/array-0.4.0.1/hslogo-16.png
-share/doc/ghc/html/libraries/array-0.4.0.1/index-frames.html
-share/doc/ghc/html/libraries/array-0.4.0.1/index.html
-share/doc/ghc/html/libraries/array-0.4.0.1/mini_Data-Array-IArray.html
-share/doc/ghc/html/libraries/array-0.4.0.1/mini_Data-Array-IO-Safe.html
-share/doc/ghc/html/libraries/array-0.4.0.1/mini_Data-Array-IO.html
-share/doc/ghc/html/libraries/array-0.4.0.1/mini_Data-Array-MArray-Safe.html
-share/doc/ghc/html/libraries/array-0.4.0.1/mini_Data-Array-MArray.html
-share/doc/ghc/html/libraries/array-0.4.0.1/mini_Data-Array-ST-Safe.html
-share/doc/ghc/html/libraries/array-0.4.0.1/mini_Data-Array-ST.html
-share/doc/ghc/html/libraries/array-0.4.0.1/mini_Data-Array-Storable-Safe.html
-share/doc/ghc/html/libraries/array-0.4.0.1/mini_Data-Array-Storable.html
-share/doc/ghc/html/libraries/array-0.4.0.1/mini_Data-Array-Unboxed.html
-share/doc/ghc/html/libraries/array-0.4.0.1/mini_Data-Array-Unsafe.html
-share/doc/ghc/html/libraries/array-0.4.0.1/mini_Data-Array.html
-share/doc/ghc/html/libraries/array-0.4.0.1/minus.gif
-share/doc/ghc/html/libraries/array-0.4.0.1/ocean.css
-share/doc/ghc/html/libraries/array-0.4.0.1/plus.gif
-share/doc/ghc/html/libraries/array-0.4.0.1/synopsis.png
-share/doc/ghc/html/libraries/base-4.6.0.1/Control-Applicative.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Control-Arrow.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Control-Category.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Control-Concurrent-Chan.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Control-Concurrent-MVar.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Control-Concurrent-QSem.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Control-Concurrent-QSemN.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Control-Concurrent-SampleVar.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Control-Concurrent.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Control-Exception-Base.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Control-Exception.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Control-Monad-Fix.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Control-Monad-Instances.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Control-Monad-ST-Lazy-Safe.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Control-Monad-ST-Lazy-Unsafe.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Control-Monad-ST-Lazy.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Control-Monad-ST-Safe.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Control-Monad-ST-Strict.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Control-Monad-ST-Unsafe.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Control-Monad-ST.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Control-Monad-Zip.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Control-Monad.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Data-Bits.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Data-Bool.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Data-Char.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Data-Complex.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Data-Data.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Data-Dynamic.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Data-Either.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Data-Eq.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Data-Fixed.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Data-Foldable.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Data-Function.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Data-Functor.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Data-HashTable.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Data-IORef.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Data-Int.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Data-Ix.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Data-List.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Data-Maybe.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Data-Monoid.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Data-Ord.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Data-Ratio.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Data-STRef-Lazy.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Data-STRef-Strict.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Data-STRef.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Data-String.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Data-Traversable.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Data-Tuple.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Data-Typeable-Internal.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Data-Typeable.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Data-Unique.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Data-Version.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Data-Word.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Debug-Trace.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Foreign-C-Error.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Foreign-C-String.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Foreign-C-Types.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Foreign-C.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Foreign-Concurrent.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Foreign-ForeignPtr-Safe.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Foreign-ForeignPtr-Unsafe.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Foreign-Marshal-Alloc.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Foreign-Marshal-Array.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Foreign-Marshal-Error.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Foreign-Marshal-Pool.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Foreign-Marshal-Safe.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Foreign-Marshal-Unsafe.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Foreign-Marshal-Utils.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Foreign-Marshal.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Foreign-Ptr.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Foreign-Safe.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Foreign-StablePtr.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Foreign-Storable.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Foreign.html
-share/doc/ghc/html/libraries/base-4.6.0.1/GHC-Char.html
-share/doc/ghc/html/libraries/base-4.6.0.1/GHC-Conc-IO.html
-share/doc/ghc/html/libraries/base-4.6.0.1/GHC-Conc-Signal.html
-share/doc/ghc/html/libraries/base-4.6.0.1/GHC-Conc-Sync.html
-share/doc/ghc/html/libraries/base-4.6.0.1/GHC-Conc.html
-share/doc/ghc/html/libraries/base-4.6.0.1/GHC-ConsoleHandler.html
-share/doc/ghc/html/libraries/base-4.6.0.1/GHC-Constants.html
-share/doc/ghc/html/libraries/base-4.6.0.1/GHC-Desugar.html
-share/doc/ghc/html/libraries/base-4.6.0.1/GHC-Environment.html
-share/doc/ghc/html/libraries/base-4.6.0.1/GHC-Event.html
-share/doc/ghc/html/libraries/base-4.6.0.1/GHC-Exts.html
-share/doc/ghc/html/libraries/base-4.6.0.1/GHC-Fingerprint-Type.html
-share/doc/ghc/html/libraries/base-4.6.0.1/GHC-Fingerprint.html
-share/doc/ghc/html/libraries/base-4.6.0.1/GHC-Foreign.html
-share/doc/ghc/html/libraries/base-4.6.0.1/GHC-Generics.html
-share/doc/ghc/html/libraries/base-4.6.0.1/GHC-IO-Buffer.html
-share/doc/ghc/html/libraries/base-4.6.0.1/GHC-IO-BufferedIO.html
-share/doc/ghc/html/libraries/base-4.6.0.1/GHC-IO-Device.html
-share/doc/ghc/html/libraries/base-4.6.0.1/GHC-IO-Encoding-CodePage.html
-share/doc/ghc/html/libraries/base-4.6.0.1/GHC-IO-Encoding-Failure.html
-share/doc/ghc/html/libraries/base-4.6.0.1/GHC-IO-Encoding-Iconv.html
-share/doc/ghc/html/libraries/base-4.6.0.1/GHC-IO-Encoding-Latin1.html
-share/doc/ghc/html/libraries/base-4.6.0.1/GHC-IO-Encoding-Types.html
-share/doc/ghc/html/libraries/base-4.6.0.1/GHC-IO-Encoding-UTF16.html
-share/doc/ghc/html/libraries/base-4.6.0.1/GHC-IO-Encoding-UTF32.html
-share/doc/ghc/html/libraries/base-4.6.0.1/GHC-IO-Encoding-UTF8.html
-share/doc/ghc/html/libraries/base-4.6.0.1/GHC-IO-Encoding.html
-share/doc/ghc/html/libraries/base-4.6.0.1/GHC-IO-Handle-FD.html
-share/doc/ghc/html/libraries/base-4.6.0.1/GHC-IO-Handle.html
-share/doc/ghc/html/libraries/base-4.6.0.1/GHC-IP.html
-share/doc/ghc/html/libraries/base-4.6.0.1/GHC-Stack.html
-share/doc/ghc/html/libraries/base-4.6.0.1/GHC-Stats.html
-share/doc/ghc/html/libraries/base-4.6.0.1/GHC-TypeLits.html
-share/doc/ghc/html/libraries/base-4.6.0.1/LICENSE
-share/doc/ghc/html/libraries/base-4.6.0.1/Numeric.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Prelude.html
-share/doc/ghc/html/libraries/base-4.6.0.1/System-CPUTime.html
-share/doc/ghc/html/libraries/base-4.6.0.1/System-Console-GetOpt.html
-share/doc/ghc/html/libraries/base-4.6.0.1/System-Environment.html
-share/doc/ghc/html/libraries/base-4.6.0.1/System-Exit.html
-share/doc/ghc/html/libraries/base-4.6.0.1/System-IO-Error.html
-share/doc/ghc/html/libraries/base-4.6.0.1/System-IO-Unsafe.html
-share/doc/ghc/html/libraries/base-4.6.0.1/System-IO.html
-share/doc/ghc/html/libraries/base-4.6.0.1/System-Info.html
-share/doc/ghc/html/libraries/base-4.6.0.1/System-Mem-StableName.html
-share/doc/ghc/html/libraries/base-4.6.0.1/System-Mem-Weak.html
-share/doc/ghc/html/libraries/base-4.6.0.1/System-Mem.html
-share/doc/ghc/html/libraries/base-4.6.0.1/System-Posix-Types.html
-share/doc/ghc/html/libraries/base-4.6.0.1/System-Timeout.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Text-ParserCombinators-ReadP.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Text-ParserCombinators-ReadPrec.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Text-Printf.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Text-Read-Lex.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Text-Read.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Text-Show-Functions.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Text-Show.html
-share/doc/ghc/html/libraries/base-4.6.0.1/Unsafe-Coerce.html
-share/doc/ghc/html/libraries/base-4.6.0.1/base.haddock
-share/doc/ghc/html/libraries/base-4.6.0.1/base.haddock.t
-share/doc/ghc/html/libraries/base-4.6.0.1/base.txt
-share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-124.html
-share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-126.html
-share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-33.html
-share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-36.html
-share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-37.html
-share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-38.html
-share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-42.html
-share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-43.html
-share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-45.html
-share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-46.html
-share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-47.html
-share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-58.html
-share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-60.html
-share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-61.html
-share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-62.html
-share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-92.html
-share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-94.html
-share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-A.html
-share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-All.html
-share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-B.html
-share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-C.html
-share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-D.html
-share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-E.html
-share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-F.html
-share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-G.html
-share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-H.html
-share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-I.html
-share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-J.html
-share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-K.html
-share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-L.html
-share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-M.html
-share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-N.html
-share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-O.html
-share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-P.html
-share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-Q.html
-share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-R.html
-share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-S.html
-share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-T.html
-share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-U.html
-share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-V.html
-share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-W.html
-share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-X.html
-share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-Y.html
-share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-Z.html
-share/doc/ghc/html/libraries/base-4.6.0.1/doc-index.html
-share/doc/ghc/html/libraries/base-4.6.0.1/frames.html
-share/doc/ghc/html/libraries/base-4.6.0.1/haddock-util.js
-share/doc/ghc/html/libraries/base-4.6.0.1/hslogo-16.png
-share/doc/ghc/html/libraries/base-4.6.0.1/index-frames.html
-share/doc/ghc/html/libraries/base-4.6.0.1/index.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Control-Applicative.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Control-Arrow.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Control-Category.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Control-Concurrent-Chan.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Control-Concurrent-MVar.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Control-Concurrent-QSem.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Control-Concurrent-QSemN.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Control-Concurrent-SampleVar.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Control-Concurrent.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Control-Exception-Base.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Control-Exception.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Control-Monad-Fix.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Control-Monad-Instances.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Control-Monad-ST-Lazy-Safe.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Control-Monad-ST-Lazy-Unsafe.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Control-Monad-ST-Lazy.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Control-Monad-ST-Safe.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Control-Monad-ST-Strict.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Control-Monad-ST-Unsafe.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Control-Monad-ST.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Control-Monad-Zip.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Control-Monad.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-Bits.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-Bool.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-Char.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-Complex.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-Data.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-Dynamic.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-Either.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-Eq.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-Fixed.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-Foldable.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-Function.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-Functor.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-HashTable.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-IORef.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-Int.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-Ix.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-List.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-Maybe.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-Monoid.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-Ord.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-Ratio.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-STRef-Lazy.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-STRef-Strict.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-STRef.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-String.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-Traversable.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-Tuple.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-Typeable-Internal.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-Typeable.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-Unique.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-Version.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-Word.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Debug-Trace.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Foreign-C-Error.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Foreign-C-String.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Foreign-C-Types.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Foreign-C.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Foreign-Concurrent.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Foreign-ForeignPtr-Safe.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Foreign-ForeignPtr-Unsafe.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Foreign-Marshal-Alloc.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Foreign-Marshal-Array.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Foreign-Marshal-Error.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Foreign-Marshal-Pool.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Foreign-Marshal-Safe.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Foreign-Marshal-Unsafe.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Foreign-Marshal-Utils.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Foreign-Marshal.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Foreign-Ptr.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Foreign-Safe.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Foreign-StablePtr.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Foreign-Storable.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Foreign.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-Char.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-Conc-IO.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-Conc-Signal.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-Conc-Sync.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-Conc.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-ConsoleHandler.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-Constants.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-Desugar.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-Environment.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-Event.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-Exts.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-Fingerprint-Type.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-Fingerprint.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-Foreign.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-Generics.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-IO-Buffer.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-IO-BufferedIO.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-IO-Device.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-IO-Encoding-CodePage.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-IO-Encoding-Failure.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-IO-Encoding-Iconv.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-IO-Encoding-Latin1.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-IO-Encoding-Types.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-IO-Encoding-UTF16.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-IO-Encoding-UTF32.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-IO-Encoding-UTF8.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-IO-Encoding.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-IO-Handle-FD.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-IO-Handle.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-IP.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-Stack.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-Stats.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-TypeLits.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Numeric.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Prelude.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_System-CPUTime.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_System-Console-GetOpt.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_System-Environment.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_System-Exit.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_System-IO-Error.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_System-IO-Unsafe.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_System-IO.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_System-Info.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_System-Mem-StableName.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_System-Mem-Weak.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_System-Mem.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_System-Posix-Types.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_System-Timeout.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Text-ParserCombinators-ReadP.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Text-ParserCombinators-ReadPrec.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Text-Printf.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Text-Read-Lex.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Text-Read.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Text-Show-Functions.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Text-Show.html
-share/doc/ghc/html/libraries/base-4.6.0.1/mini_Unsafe-Coerce.html
-share/doc/ghc/html/libraries/base-4.6.0.1/minus.gif
-share/doc/ghc/html/libraries/base-4.6.0.1/ocean.css
-share/doc/ghc/html/libraries/base-4.6.0.1/plus.gif
-share/doc/ghc/html/libraries/base-4.6.0.1/synopsis.png
-share/doc/ghc/html/libraries/bin-package-db-0.0.0.0/Distribution-InstalledPackageInfo-Binary.html
-share/doc/ghc/html/libraries/bin-package-db-0.0.0.0/bin-package-db.haddock
-share/doc/ghc/html/libraries/bin-package-db-0.0.0.0/bin-package-db.haddock.t
-share/doc/ghc/html/libraries/bin-package-db-0.0.0.0/bin-package-db.txt
-share/doc/ghc/html/libraries/bin-package-db-0.0.0.0/doc-index.html
-share/doc/ghc/html/libraries/bin-package-db-0.0.0.0/frames.html
-share/doc/ghc/html/libraries/bin-package-db-0.0.0.0/haddock-util.js
-share/doc/ghc/html/libraries/bin-package-db-0.0.0.0/hslogo-16.png
-share/doc/ghc/html/libraries/bin-package-db-0.0.0.0/index-frames.html
-share/doc/ghc/html/libraries/bin-package-db-0.0.0.0/index.html
-share/doc/ghc/html/libraries/bin-package-db-0.0.0.0/mini_Distribution-InstalledPackageInfo-Binary.html
-share/doc/ghc/html/libraries/bin-package-db-0.0.0.0/minus.gif
-share/doc/ghc/html/libraries/bin-package-db-0.0.0.0/ocean.css
-share/doc/ghc/html/libraries/bin-package-db-0.0.0.0/plus.gif
-share/doc/ghc/html/libraries/bin-package-db-0.0.0.0/synopsis.png
-share/doc/ghc/html/libraries/binary-0.5.1.1/Data-Binary-Builder-Internal.html
-share/doc/ghc/html/libraries/binary-0.5.1.1/Data-Binary-Builder.html
-share/doc/ghc/html/libraries/binary-0.5.1.1/Data-Binary-Get.html
-share/doc/ghc/html/libraries/binary-0.5.1.1/Data-Binary-Put.html
-share/doc/ghc/html/libraries/binary-0.5.1.1/Data-Binary.html
-share/doc/ghc/html/libraries/binary-0.5.1.1/LICENSE
-share/doc/ghc/html/libraries/binary-0.5.1.1/binary.haddock
-share/doc/ghc/html/libraries/binary-0.5.1.1/binary.haddock.t
-share/doc/ghc/html/libraries/binary-0.5.1.1/binary.txt
-share/doc/ghc/html/libraries/binary-0.5.1.1/doc-index.html
-share/doc/ghc/html/libraries/binary-0.5.1.1/frames.html
-share/doc/ghc/html/libraries/binary-0.5.1.1/haddock-util.js
-share/doc/ghc/html/libraries/binary-0.5.1.1/hslogo-16.png
-share/doc/ghc/html/libraries/binary-0.5.1.1/index-frames.html
-share/doc/ghc/html/libraries/binary-0.5.1.1/index.html
-share/doc/ghc/html/libraries/binary-0.5.1.1/mini_Data-Binary-Builder-Internal.html
-share/doc/ghc/html/libraries/binary-0.5.1.1/mini_Data-Binary-Builder.html
-share/doc/ghc/html/libraries/binary-0.5.1.1/mini_Data-Binary-Get.html
-share/doc/ghc/html/libraries/binary-0.5.1.1/mini_Data-Binary-Put.html
-share/doc/ghc/html/libraries/binary-0.5.1.1/mini_Data-Binary.html
-share/doc/ghc/html/libraries/binary-0.5.1.1/minus.gif
-share/doc/ghc/html/libraries/binary-0.5.1.1/ocean.css
-share/doc/ghc/html/libraries/binary-0.5.1.1/plus.gif
-share/doc/ghc/html/libraries/binary-0.5.1.1/synopsis.png
-share/doc/ghc/html/libraries/bytestring-0.10.0.2/Data-ByteString-Char8.html
-share/doc/ghc/html/libraries/bytestring-0.10.0.2/Data-ByteString-Lazy-Builder-ASCII.html
-share/doc/ghc/html/libraries/bytestring-0.10.0.2/Data-ByteString-Lazy-Builder-Extras.html
-share/doc/ghc/html/libraries/bytestring-0.10.0.2/Data-ByteString-Lazy-Builder.html
-share/doc/ghc/html/libraries/bytestring-0.10.0.2/Data-ByteString-Lazy-Char8.html
-share/doc/ghc/html/libraries/bytestring-0.10.0.2/Data-ByteString-Lazy.html
-share/doc/ghc/html/libraries/bytestring-0.10.0.2/Data-ByteString-Unsafe.html
-share/doc/ghc/html/libraries/bytestring-0.10.0.2/Data-ByteString.html
-share/doc/ghc/html/libraries/bytestring-0.10.0.2/LICENSE
-share/doc/ghc/html/libraries/bytestring-0.10.0.2/bytestring.haddock
-share/doc/ghc/html/libraries/bytestring-0.10.0.2/bytestring.haddock.t
-share/doc/ghc/html/libraries/bytestring-0.10.0.2/bytestring.txt
-share/doc/ghc/html/libraries/bytestring-0.10.0.2/doc-index-A.html
-share/doc/ghc/html/libraries/bytestring-0.10.0.2/doc-index-All.html
-share/doc/ghc/html/libraries/bytestring-0.10.0.2/doc-index-B.html
-share/doc/ghc/html/libraries/bytestring-0.10.0.2/doc-index-C.html
-share/doc/ghc/html/libraries/bytestring-0.10.0.2/doc-index-D.html
-share/doc/ghc/html/libraries/bytestring-0.10.0.2/doc-index-E.html
-share/doc/ghc/html/libraries/bytestring-0.10.0.2/doc-index-F.html
-share/doc/ghc/html/libraries/bytestring-0.10.0.2/doc-index-G.html
-share/doc/ghc/html/libraries/bytestring-0.10.0.2/doc-index-H.html
-share/doc/ghc/html/libraries/bytestring-0.10.0.2/doc-index-I.html
-share/doc/ghc/html/libraries/bytestring-0.10.0.2/doc-index-L.html
-share/doc/ghc/html/libraries/bytestring-0.10.0.2/doc-index-M.html
-share/doc/ghc/html/libraries/bytestring-0.10.0.2/doc-index-N.html
-share/doc/ghc/html/libraries/bytestring-0.10.0.2/doc-index-P.html
-share/doc/ghc/html/libraries/bytestring-0.10.0.2/doc-index-R.html
-share/doc/ghc/html/libraries/bytestring-0.10.0.2/doc-index-S.html
-share/doc/ghc/html/libraries/bytestring-0.10.0.2/doc-index-T.html
-share/doc/ghc/html/libraries/bytestring-0.10.0.2/doc-index-U.html
-share/doc/ghc/html/libraries/bytestring-0.10.0.2/doc-index-W.html
-share/doc/ghc/html/libraries/bytestring-0.10.0.2/doc-index-Z.html
-share/doc/ghc/html/libraries/bytestring-0.10.0.2/doc-index.html
-share/doc/ghc/html/libraries/bytestring-0.10.0.2/frames.html
-share/doc/ghc/html/libraries/bytestring-0.10.0.2/haddock-util.js
-share/doc/ghc/html/libraries/bytestring-0.10.0.2/hslogo-16.png
-share/doc/ghc/html/libraries/bytestring-0.10.0.2/index-frames.html
-share/doc/ghc/html/libraries/bytestring-0.10.0.2/index.html
-share/doc/ghc/html/libraries/bytestring-0.10.0.2/mini_Data-ByteString-Char8.html
-share/doc/ghc/html/libraries/bytestring-0.10.0.2/mini_Data-ByteString-Lazy-Builder-ASCII.html
-share/doc/ghc/html/libraries/bytestring-0.10.0.2/mini_Data-ByteString-Lazy-Builder-Extras.html
-share/doc/ghc/html/libraries/bytestring-0.10.0.2/mini_Data-ByteString-Lazy-Builder.html
-share/doc/ghc/html/libraries/bytestring-0.10.0.2/mini_Data-ByteString-Lazy-Char8.html
-share/doc/ghc/html/libraries/bytestring-0.10.0.2/mini_Data-ByteString-Lazy.html
-share/doc/ghc/html/libraries/bytestring-0.10.0.2/mini_Data-ByteString-Unsafe.html
-share/doc/ghc/html/libraries/bytestring-0.10.0.2/mini_Data-ByteString.html
-share/doc/ghc/html/libraries/bytestring-0.10.0.2/minus.gif
-share/doc/ghc/html/libraries/bytestring-0.10.0.2/ocean.css
-share/doc/ghc/html/libraries/bytestring-0.10.0.2/plus.gif
-share/doc/ghc/html/libraries/bytestring-0.10.0.2/synopsis.png
-share/doc/ghc/html/libraries/containers-0.5.0.0/Data-Graph.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/Data-IntMap-Lazy.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/Data-IntMap-Strict.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/Data-IntMap.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/Data-IntSet.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/Data-Map-Lazy.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/Data-Map-Strict.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/Data-Map.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/Data-Sequence.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/Data-Set.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/Data-Tree.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/LICENSE
-share/doc/ghc/html/libraries/containers-0.5.0.0/containers.haddock
-share/doc/ghc/html/libraries/containers-0.5.0.0/containers.haddock.t
-share/doc/ghc/html/libraries/containers-0.5.0.0/containers.txt
-share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-124.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-33.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-58.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-60.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-62.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-92.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-A.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-All.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-B.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-C.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-D.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-E.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-F.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-G.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-I.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-K.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-L.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-M.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-N.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-O.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-P.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-R.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-S.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-T.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-U.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-V.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-Z.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/frames.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/haddock-util.js
-share/doc/ghc/html/libraries/containers-0.5.0.0/hslogo-16.png
-share/doc/ghc/html/libraries/containers-0.5.0.0/index-frames.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/index.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/mini_Data-Graph.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/mini_Data-IntMap-Lazy.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/mini_Data-IntMap-Strict.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/mini_Data-IntMap.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/mini_Data-IntSet.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/mini_Data-Map-Lazy.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/mini_Data-Map-Strict.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/mini_Data-Map.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/mini_Data-Sequence.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/mini_Data-Set.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/mini_Data-Tree.html
-share/doc/ghc/html/libraries/containers-0.5.0.0/minus.gif
-share/doc/ghc/html/libraries/containers-0.5.0.0/ocean.css
-share/doc/ghc/html/libraries/containers-0.5.0.0/plus.gif
-share/doc/ghc/html/libraries/containers-0.5.0.0/synopsis.png
-share/doc/ghc/html/libraries/deepseq-1.3.0.1/Control-DeepSeq.html
-share/doc/ghc/html/libraries/deepseq-1.3.0.1/LICENSE
-share/doc/ghc/html/libraries/deepseq-1.3.0.1/deepseq.haddock
-share/doc/ghc/html/libraries/deepseq-1.3.0.1/deepseq.haddock.t
-share/doc/ghc/html/libraries/deepseq-1.3.0.1/deepseq.txt
-share/doc/ghc/html/libraries/deepseq-1.3.0.1/doc-index.html
-share/doc/ghc/html/libraries/deepseq-1.3.0.1/frames.html
-share/doc/ghc/html/libraries/deepseq-1.3.0.1/haddock-util.js
-share/doc/ghc/html/libraries/deepseq-1.3.0.1/hslogo-16.png
-share/doc/ghc/html/libraries/deepseq-1.3.0.1/index-frames.html
-share/doc/ghc/html/libraries/deepseq-1.3.0.1/index.html
-share/doc/ghc/html/libraries/deepseq-1.3.0.1/mini_Control-DeepSeq.html
-share/doc/ghc/html/libraries/deepseq-1.3.0.1/minus.gif
-share/doc/ghc/html/libraries/deepseq-1.3.0.1/ocean.css
-share/doc/ghc/html/libraries/deepseq-1.3.0.1/plus.gif
-share/doc/ghc/html/libraries/deepseq-1.3.0.1/synopsis.png
-share/doc/ghc/html/libraries/directory-1.2.0.1/LICENSE
-share/doc/ghc/html/libraries/directory-1.2.0.1/System-Directory.html
-share/doc/ghc/html/libraries/directory-1.2.0.1/directory.haddock
-share/doc/ghc/html/libraries/directory-1.2.0.1/directory.haddock.t
-share/doc/ghc/html/libraries/directory-1.2.0.1/directory.txt
-share/doc/ghc/html/libraries/directory-1.2.0.1/doc-index.html
-share/doc/ghc/html/libraries/directory-1.2.0.1/frames.html
-share/doc/ghc/html/libraries/directory-1.2.0.1/haddock-util.js
-share/doc/ghc/html/libraries/directory-1.2.0.1/hslogo-16.png
-share/doc/ghc/html/libraries/directory-1.2.0.1/index-frames.html
-share/doc/ghc/html/libraries/directory-1.2.0.1/index.html
-share/doc/ghc/html/libraries/directory-1.2.0.1/mini_System-Directory.html
-share/doc/ghc/html/libraries/directory-1.2.0.1/minus.gif
-share/doc/ghc/html/libraries/directory-1.2.0.1/ocean.css
-share/doc/ghc/html/libraries/directory-1.2.0.1/plus.gif
-share/doc/ghc/html/libraries/directory-1.2.0.1/synopsis.png
-share/doc/ghc/html/libraries/doc-index-124.html
-share/doc/ghc/html/libraries/doc-index-126.html
-share/doc/ghc/html/libraries/doc-index-33.html
-share/doc/ghc/html/libraries/doc-index-36.html
-share/doc/ghc/html/libraries/doc-index-37.html
-share/doc/ghc/html/libraries/doc-index-38.html
-share/doc/ghc/html/libraries/doc-index-42.html
-share/doc/ghc/html/libraries/doc-index-43.html
-share/doc/ghc/html/libraries/doc-index-45.html
-share/doc/ghc/html/libraries/doc-index-46.html
-share/doc/ghc/html/libraries/doc-index-47.html
-share/doc/ghc/html/libraries/doc-index-58.html
-share/doc/ghc/html/libraries/doc-index-60.html
-share/doc/ghc/html/libraries/doc-index-61.html
-share/doc/ghc/html/libraries/doc-index-62.html
-share/doc/ghc/html/libraries/doc-index-92.html
-share/doc/ghc/html/libraries/doc-index-94.html
-share/doc/ghc/html/libraries/doc-index-A.html
-share/doc/ghc/html/libraries/doc-index-All.html
-share/doc/ghc/html/libraries/doc-index-B.html
-share/doc/ghc/html/libraries/doc-index-C.html
-share/doc/ghc/html/libraries/doc-index-D.html
-share/doc/ghc/html/libraries/doc-index-E.html
-share/doc/ghc/html/libraries/doc-index-F.html
-share/doc/ghc/html/libraries/doc-index-G.html
-share/doc/ghc/html/libraries/doc-index-H.html
-share/doc/ghc/html/libraries/doc-index-I.html
-share/doc/ghc/html/libraries/doc-index-J.html
-share/doc/ghc/html/libraries/doc-index-K.html
-share/doc/ghc/html/libraries/doc-index-L.html
-share/doc/ghc/html/libraries/doc-index-M.html
-share/doc/ghc/html/libraries/doc-index-N.html
-share/doc/ghc/html/libraries/doc-index-O.html
-share/doc/ghc/html/libraries/doc-index-P.html
-share/doc/ghc/html/libraries/doc-index-Q.html
-share/doc/ghc/html/libraries/doc-index-R.html
-share/doc/ghc/html/libraries/doc-index-S.html
-share/doc/ghc/html/libraries/doc-index-T.html
-share/doc/ghc/html/libraries/doc-index-U.html
-share/doc/ghc/html/libraries/doc-index-V.html
-share/doc/ghc/html/libraries/doc-index-W.html
-share/doc/ghc/html/libraries/doc-index-X.html
-share/doc/ghc/html/libraries/doc-index-Y.html
-share/doc/ghc/html/libraries/doc-index-Z.html
-share/doc/ghc/html/libraries/doc-index.html
-share/doc/ghc/html/libraries/filepath-1.3.0.1/LICENSE
-share/doc/ghc/html/libraries/filepath-1.3.0.1/System-FilePath-Posix.html
-share/doc/ghc/html/libraries/filepath-1.3.0.1/System-FilePath-Windows.html
-share/doc/ghc/html/libraries/filepath-1.3.0.1/System-FilePath.html
-share/doc/ghc/html/libraries/filepath-1.3.0.1/doc-index.html
-share/doc/ghc/html/libraries/filepath-1.3.0.1/filepath.haddock
-share/doc/ghc/html/libraries/filepath-1.3.0.1/filepath.haddock.t
-share/doc/ghc/html/libraries/filepath-1.3.0.1/filepath.txt
-share/doc/ghc/html/libraries/filepath-1.3.0.1/frames.html
-share/doc/ghc/html/libraries/filepath-1.3.0.1/haddock-util.js
-share/doc/ghc/html/libraries/filepath-1.3.0.1/hslogo-16.png
-share/doc/ghc/html/libraries/filepath-1.3.0.1/index-frames.html
-share/doc/ghc/html/libraries/filepath-1.3.0.1/index.html
-share/doc/ghc/html/libraries/filepath-1.3.0.1/mini_System-FilePath-Posix.html
-share/doc/ghc/html/libraries/filepath-1.3.0.1/mini_System-FilePath-Windows.html
-share/doc/ghc/html/libraries/filepath-1.3.0.1/mini_System-FilePath.html
-share/doc/ghc/html/libraries/filepath-1.3.0.1/minus.gif
-share/doc/ghc/html/libraries/filepath-1.3.0.1/ocean.css
-share/doc/ghc/html/libraries/filepath-1.3.0.1/plus.gif
-share/doc/ghc/html/libraries/filepath-1.3.0.1/synopsis.png
-share/doc/ghc/html/libraries/frames.html
-share/doc/ghc/html/libraries/gen_contents_index
-share/doc/ghc/html/libraries/${PKGNAME}/Annotations.html
-share/doc/ghc/html/libraries/${PKGNAME}/AsmCodeGen.html
-share/doc/ghc/html/libraries/${PKGNAME}/Avail.html
-share/doc/ghc/html/libraries/${PKGNAME}/Bag.html
-share/doc/ghc/html/libraries/${PKGNAME}/BasicTypes.html
-share/doc/ghc/html/libraries/${PKGNAME}/BinIface.html
-share/doc/ghc/html/libraries/${PKGNAME}/Binary.html
-share/doc/ghc/html/libraries/${PKGNAME}/Bitmap.html
-share/doc/ghc/html/libraries/${PKGNAME}/BlockId.html
-share/doc/ghc/html/libraries/${PKGNAME}/BreakArray.html
-share/doc/ghc/html/libraries/${PKGNAME}/BufWrite.html
-share/doc/ghc/html/libraries/${PKGNAME}/BuildTyCl.html
-share/doc/ghc/html/libraries/${PKGNAME}/ByteCodeAsm.html
-share/doc/ghc/html/libraries/${PKGNAME}/ByteCodeGen.html
-share/doc/ghc/html/libraries/${PKGNAME}/ByteCodeInstr.html
-share/doc/ghc/html/libraries/${PKGNAME}/ByteCodeItbls.html
-share/doc/ghc/html/libraries/${PKGNAME}/ByteCodeLink.html
-share/doc/ghc/html/libraries/${PKGNAME}/CLabel.html
-share/doc/ghc/html/libraries/${PKGNAME}/CPrim.html
-share/doc/ghc/html/libraries/${PKGNAME}/CSE.html
-share/doc/ghc/html/libraries/${PKGNAME}/CgBindery.html
-share/doc/ghc/html/libraries/${PKGNAME}/CgCallConv.html
-share/doc/ghc/html/libraries/${PKGNAME}/CgCase.html
-share/doc/ghc/html/libraries/${PKGNAME}/CgClosure.html
-share/doc/ghc/html/libraries/${PKGNAME}/CgCon.html
-share/doc/ghc/html/libraries/${PKGNAME}/CgExpr.html
-share/doc/ghc/html/libraries/${PKGNAME}/CgExtCode.html
-share/doc/ghc/html/libraries/${PKGNAME}/CgForeignCall.html
-share/doc/ghc/html/libraries/${PKGNAME}/CgHeapery.html
-share/doc/ghc/html/libraries/${PKGNAME}/CgHpc.html
-share/doc/ghc/html/libraries/${PKGNAME}/CgInfoTbls.html
-share/doc/ghc/html/libraries/${PKGNAME}/CgLetNoEscape.html
-share/doc/ghc/html/libraries/${PKGNAME}/CgMonad.html
-share/doc/ghc/html/libraries/${PKGNAME}/CgParallel.html
-share/doc/ghc/html/libraries/${PKGNAME}/CgPrimOp.html
-share/doc/ghc/html/libraries/${PKGNAME}/CgProf.html
-share/doc/ghc/html/libraries/${PKGNAME}/CgStackery.html
-share/doc/ghc/html/libraries/${PKGNAME}/CgTailCall.html
-share/doc/ghc/html/libraries/${PKGNAME}/CgTicky.html
-share/doc/ghc/html/libraries/${PKGNAME}/CgUtils.html
-share/doc/ghc/html/libraries/${PKGNAME}/Check.html
-share/doc/ghc/html/libraries/${PKGNAME}/Class.html
-share/doc/ghc/html/libraries/${PKGNAME}/ClosureInfo.html
-share/doc/ghc/html/libraries/${PKGNAME}/CmdLineParser.html
-share/doc/ghc/html/libraries/${PKGNAME}/Cmm.html
-share/doc/ghc/html/libraries/${PKGNAME}/CmmBuildInfoTables.html
-share/doc/ghc/html/libraries/${PKGNAME}/CmmCallConv.html
-share/doc/ghc/html/libraries/${PKGNAME}/CmmCommonBlockElim.html
-share/doc/ghc/html/libraries/${PKGNAME}/CmmContFlowOpt.html
-share/doc/ghc/html/libraries/${PKGNAME}/CmmCvt.html
-share/doc/ghc/html/libraries/${PKGNAME}/CmmExpr.html
-share/doc/ghc/html/libraries/${PKGNAME}/CmmInfo.html
-share/doc/ghc/html/libraries/${PKGNAME}/CmmLayoutStack.html
-share/doc/ghc/html/libraries/${PKGNAME}/CmmLex.html
-share/doc/ghc/html/libraries/${PKGNAME}/CmmLint.html
-share/doc/ghc/html/libraries/${PKGNAME}/CmmLive.html
-share/doc/ghc/html/libraries/${PKGNAME}/CmmMachOp.html
-share/doc/ghc/html/libraries/${PKGNAME}/CmmNode.html
-share/doc/ghc/html/libraries/${PKGNAME}/CmmOpt.html
-share/doc/ghc/html/libraries/${PKGNAME}/CmmParse.html
-share/doc/ghc/html/libraries/${PKGNAME}/CmmPipeline.html
-share/doc/ghc/html/libraries/${PKGNAME}/CmmProcPoint.html
-share/doc/ghc/html/libraries/${PKGNAME}/CmmRewriteAssignments.html
-share/doc/ghc/html/libraries/${PKGNAME}/CmmSink.html
-share/doc/ghc/html/libraries/${PKGNAME}/CmmType.html
-share/doc/ghc/html/libraries/${PKGNAME}/CmmUtils.html
-share/doc/ghc/html/libraries/${PKGNAME}/CodeGen.html
-share/doc/ghc/html/libraries/${PKGNAME}/CodeOutput.html
-share/doc/ghc/html/libraries/${PKGNAME}/Coercion.html
-share/doc/ghc/html/libraries/${PKGNAME}/Config.html
-share/doc/ghc/html/libraries/${PKGNAME}/Constants.html
-share/doc/ghc/html/libraries/${PKGNAME}/Convert.html
-share/doc/ghc/html/libraries/${PKGNAME}/CoreArity.html
-share/doc/ghc/html/libraries/${PKGNAME}/CoreFVs.html
-share/doc/ghc/html/libraries/${PKGNAME}/CoreLint.html
-share/doc/ghc/html/libraries/${PKGNAME}/CoreMonad.html
-share/doc/ghc/html/libraries/${PKGNAME}/CorePrep.html
-share/doc/ghc/html/libraries/${PKGNAME}/CoreSubst.html
-share/doc/ghc/html/libraries/${PKGNAME}/CoreSyn.html
-share/doc/ghc/html/libraries/${PKGNAME}/CoreTidy.html
-share/doc/ghc/html/libraries/${PKGNAME}/CoreToStg.html
-share/doc/ghc/html/libraries/${PKGNAME}/CoreUnfold.html
-share/doc/ghc/html/libraries/${PKGNAME}/CoreUtils.html
-share/doc/ghc/html/libraries/${PKGNAME}/CostCentre.html
-share/doc/ghc/html/libraries/${PKGNAME}/Coverage.html
-share/doc/ghc/html/libraries/${PKGNAME}/Ctype.html
-share/doc/ghc/html/libraries/${PKGNAME}/DataCon.html
-share/doc/ghc/html/libraries/${PKGNAME}/Debugger.html
-share/doc/ghc/html/libraries/${PKGNAME}/DebuggerUtils.html
-share/doc/ghc/html/libraries/${PKGNAME}/Demand.html
-share/doc/ghc/html/libraries/${PKGNAME}/Desugar.html
-share/doc/ghc/html/libraries/${PKGNAME}/Digraph.html
-share/doc/ghc/html/libraries/${PKGNAME}/DmdAnal.html
-share/doc/ghc/html/libraries/${PKGNAME}/DriverMkDepend.html
-share/doc/ghc/html/libraries/${PKGNAME}/DriverPhases.html
-share/doc/ghc/html/libraries/${PKGNAME}/DriverPipeline.html
-share/doc/ghc/html/libraries/${PKGNAME}/DsArrows.html
-share/doc/ghc/html/libraries/${PKGNAME}/DsBinds.html
-share/doc/ghc/html/libraries/${PKGNAME}/DsCCall.html
-share/doc/ghc/html/libraries/${PKGNAME}/DsExpr.html
-share/doc/ghc/html/libraries/${PKGNAME}/DsForeign.html
-share/doc/ghc/html/libraries/${PKGNAME}/DsGRHSs.html
-share/doc/ghc/html/libraries/${PKGNAME}/DsListComp.html
-share/doc/ghc/html/libraries/${PKGNAME}/DsMeta.html
-share/doc/ghc/html/libraries/${PKGNAME}/DsMonad.html
-share/doc/ghc/html/libraries/${PKGNAME}/DsUtils.html
-share/doc/ghc/html/libraries/${PKGNAME}/DynFlags.html
-share/doc/ghc/html/libraries/${PKGNAME}/DynamicLoading.html
-share/doc/ghc/html/libraries/${PKGNAME}/Encoding.html
-share/doc/ghc/html/libraries/${PKGNAME}/ErrUtils.html
-share/doc/ghc/html/libraries/${PKGNAME}/Exception.html
-share/doc/ghc/html/libraries/${PKGNAME}/ExternalCore.html
-share/doc/ghc/html/libraries/${PKGNAME}/FamInst.html
-share/doc/ghc/html/libraries/${PKGNAME}/FamInstEnv.html
-share/doc/ghc/html/libraries/${PKGNAME}/FastBool.html
-share/doc/ghc/html/libraries/${PKGNAME}/FastFunctions.html
-share/doc/ghc/html/libraries/${PKGNAME}/FastMutInt.html
-share/doc/ghc/html/libraries/${PKGNAME}/FastString.html
-share/doc/ghc/html/libraries/${PKGNAME}/FastTypes.html
-share/doc/ghc/html/libraries/${PKGNAME}/Finder.html
-share/doc/ghc/html/libraries/${PKGNAME}/Fingerprint.html
-share/doc/ghc/html/libraries/${PKGNAME}/FiniteMap.html
-share/doc/ghc/html/libraries/${PKGNAME}/FlagChecker.html
-share/doc/ghc/html/libraries/${PKGNAME}/FloatIn.html
-share/doc/ghc/html/libraries/${PKGNAME}/FloatOut.html
-share/doc/ghc/html/libraries/${PKGNAME}/ForeignCall.html
-share/doc/ghc/html/libraries/${PKGNAME}/FunDeps.html
-share/doc/ghc/html/libraries/${PKGNAME}/GHC.html
-share/doc/ghc/html/libraries/${PKGNAME}/GhcMake.html
-share/doc/ghc/html/libraries/${PKGNAME}/GhcMonad.html
-share/doc/ghc/html/libraries/${PKGNAME}/GhcPlugins.html
-share/doc/ghc/html/libraries/${PKGNAME}/GraphBase.html
-share/doc/ghc/html/libraries/${PKGNAME}/GraphColor.html
-share/doc/ghc/html/libraries/${PKGNAME}/GraphOps.html
-share/doc/ghc/html/libraries/${PKGNAME}/GraphPpr.html
-share/doc/ghc/html/libraries/${PKGNAME}/HaddockUtils.html
-share/doc/ghc/html/libraries/${PKGNAME}/HeaderInfo.html
-share/doc/ghc/html/libraries/${PKGNAME}/Hoopl-Dataflow.html
-share/doc/ghc/html/libraries/${PKGNAME}/Hoopl.html
-share/doc/ghc/html/libraries/${PKGNAME}/HsBinds.html
-share/doc/ghc/html/libraries/${PKGNAME}/HsDecls.html
-share/doc/ghc/html/libraries/${PKGNAME}/HsDoc.html
-share/doc/ghc/html/libraries/${PKGNAME}/HsExpr.html
-share/doc/ghc/html/libraries/${PKGNAME}/HsImpExp.html
-share/doc/ghc/html/libraries/${PKGNAME}/HsLit.html
-share/doc/ghc/html/libraries/${PKGNAME}/HsPat.html
-share/doc/ghc/html/libraries/${PKGNAME}/HsSyn.html
-share/doc/ghc/html/libraries/${PKGNAME}/HsTypes.html
-share/doc/ghc/html/libraries/${PKGNAME}/HsUtils.html
-share/doc/ghc/html/libraries/${PKGNAME}/HscMain.html
-share/doc/ghc/html/libraries/${PKGNAME}/HscStats.html
-share/doc/ghc/html/libraries/${PKGNAME}/HscTypes.html
-share/doc/ghc/html/libraries/${PKGNAME}/IOEnv.html
-share/doc/ghc/html/libraries/${PKGNAME}/Id.html
-share/doc/ghc/html/libraries/${PKGNAME}/IdInfo.html
-share/doc/ghc/html/libraries/${PKGNAME}/IfaceEnv.html
-share/doc/ghc/html/libraries/${PKGNAME}/IfaceSyn.html
-share/doc/ghc/html/libraries/${PKGNAME}/IfaceType.html
-share/doc/ghc/html/libraries/${PKGNAME}/Inst.html
-share/doc/ghc/html/libraries/${PKGNAME}/InstEnv.html
-share/doc/ghc/html/libraries/${PKGNAME}/Instruction.html
-share/doc/ghc/html/libraries/${PKGNAME}/InteractiveEval.html
-share/doc/ghc/html/libraries/${PKGNAME}/Kind.html
-share/doc/ghc/html/libraries/${PKGNAME}/LICENSE
-share/doc/ghc/html/libraries/${PKGNAME}/LexCore.html
-share/doc/ghc/html/libraries/${PKGNAME}/Lexer.html
-share/doc/ghc/html/libraries/${PKGNAME}/LibFFI.html
-share/doc/ghc/html/libraries/${PKGNAME}/LiberateCase.html
-share/doc/ghc/html/libraries/${PKGNAME}/Linker.html
-share/doc/ghc/html/libraries/${PKGNAME}/ListSetOps.html
-share/doc/ghc/html/libraries/${PKGNAME}/Literal.html
-share/doc/ghc/html/libraries/${PKGNAME}/Llvm-AbsSyn.html
-share/doc/ghc/html/libraries/${PKGNAME}/Llvm-PpLlvm.html
-share/doc/ghc/html/libraries/${PKGNAME}/Llvm-Types.html
-share/doc/ghc/html/libraries/${PKGNAME}/Llvm.html
-share/doc/ghc/html/libraries/${PKGNAME}/LlvmCodeGen-Base.html
-share/doc/ghc/html/libraries/${PKGNAME}/LlvmCodeGen-CodeGen.html
-share/doc/ghc/html/libraries/${PKGNAME}/LlvmCodeGen-Data.html
-share/doc/ghc/html/libraries/${PKGNAME}/LlvmCodeGen-Ppr.html
-share/doc/ghc/html/libraries/${PKGNAME}/LlvmCodeGen-Regs.html
-share/doc/ghc/html/libraries/${PKGNAME}/LlvmCodeGen.html
-share/doc/ghc/html/libraries/${PKGNAME}/LlvmMangler.html
-share/doc/ghc/html/libraries/${PKGNAME}/LoadIface.html
-share/doc/ghc/html/libraries/${PKGNAME}/Match.html
-share/doc/ghc/html/libraries/${PKGNAME}/MatchCon.html
-share/doc/ghc/html/libraries/${PKGNAME}/MatchLit.html
-share/doc/ghc/html/libraries/${PKGNAME}/Maybes.html
-share/doc/ghc/html/libraries/${PKGNAME}/MkCore.html
-share/doc/ghc/html/libraries/${PKGNAME}/MkExternalCore.html
-share/doc/ghc/html/libraries/${PKGNAME}/MkGraph.html
-share/doc/ghc/html/libraries/${PKGNAME}/MkId.html
-share/doc/ghc/html/libraries/${PKGNAME}/MkIface.html
-share/doc/ghc/html/libraries/${PKGNAME}/Module.html
-share/doc/ghc/html/libraries/${PKGNAME}/MonadUtils.html
-share/doc/ghc/html/libraries/${PKGNAME}/NCGMonad.html
-share/doc/ghc/html/libraries/${PKGNAME}/Name.html
-share/doc/ghc/html/libraries/${PKGNAME}/NameEnv.html
-share/doc/ghc/html/libraries/${PKGNAME}/NameSet.html
-share/doc/ghc/html/libraries/${PKGNAME}/ObjLink.html
-share/doc/ghc/html/libraries/${PKGNAME}/OccName.html
-share/doc/ghc/html/libraries/${PKGNAME}/OccurAnal.html
-share/doc/ghc/html/libraries/${PKGNAME}/OldCmm.html
-share/doc/ghc/html/libraries/${PKGNAME}/OldCmmLint.html
-share/doc/ghc/html/libraries/${PKGNAME}/OldCmmUtils.html
-share/doc/ghc/html/libraries/${PKGNAME}/OldPprCmm.html
-share/doc/ghc/html/libraries/${PKGNAME}/OptCoercion.html
-share/doc/ghc/html/libraries/${PKGNAME}/OrdList.html
-share/doc/ghc/html/libraries/${PKGNAME}/Outputable.html
-share/doc/ghc/html/libraries/${PKGNAME}/PIC.html
-share/doc/ghc/html/libraries/${PKGNAME}/PPC-CodeGen.html
-share/doc/ghc/html/libraries/${PKGNAME}/PPC-Cond.html
-share/doc/ghc/html/libraries/${PKGNAME}/PPC-Instr.html
-share/doc/ghc/html/libraries/${PKGNAME}/PPC-Ppr.html
-share/doc/ghc/html/libraries/${PKGNAME}/PPC-RegInfo.html
-share/doc/ghc/html/libraries/${PKGNAME}/PPC-Regs.html
-share/doc/ghc/html/libraries/${PKGNAME}/PackageConfig.html
-share/doc/ghc/html/libraries/${PKGNAME}/Packages.html
-share/doc/ghc/html/libraries/${PKGNAME}/Pair.html
-share/doc/ghc/html/libraries/${PKGNAME}/Panic.html
-share/doc/ghc/html/libraries/${PKGNAME}/Parser.html
-share/doc/ghc/html/libraries/${PKGNAME}/ParserCore.html
-share/doc/ghc/html/libraries/${PKGNAME}/ParserCoreUtils.html
-share/doc/ghc/html/libraries/${PKGNAME}/Platform.html
-share/doc/ghc/html/libraries/${PKGNAME}/PprBase.html
-share/doc/ghc/html/libraries/${PKGNAME}/PprC.html
-share/doc/ghc/html/libraries/${PKGNAME}/PprCmm.html
-share/doc/ghc/html/libraries/${PKGNAME}/PprCmmDecl.html
-share/doc/ghc/html/libraries/${PKGNAME}/PprCmmExpr.html
-share/doc/ghc/html/libraries/${PKGNAME}/PprCore.html
-share/doc/ghc/html/libraries/${PKGNAME}/PprExternalCore.html
-share/doc/ghc/html/libraries/${PKGNAME}/PprTyThing.html
-share/doc/ghc/html/libraries/${PKGNAME}/PrelInfo.html
-share/doc/ghc/html/libraries/${PKGNAME}/PrelNames.html
-share/doc/ghc/html/libraries/${PKGNAME}/PrelRules.html
-share/doc/ghc/html/libraries/${PKGNAME}/Pretty.html
-share/doc/ghc/html/libraries/${PKGNAME}/PrimOp.html
-share/doc/ghc/html/libraries/${PKGNAME}/ProfInit.html
-share/doc/ghc/html/libraries/${PKGNAME}/RdrHsSyn.html
-share/doc/ghc/html/libraries/${PKGNAME}/RdrName.html
-share/doc/ghc/html/libraries/${PKGNAME}/Reg.html
-share/doc/ghc/html/libraries/${PKGNAME}/RegAlloc-Graph-ArchBase.html
-share/doc/ghc/html/libraries/${PKGNAME}/RegAlloc-Graph-ArchX86.html
-share/doc/ghc/html/libraries/${PKGNAME}/RegAlloc-Graph-Coalesce.html
-share/doc/ghc/html/libraries/${PKGNAME}/RegAlloc-Graph-Main.html
-share/doc/ghc/html/libraries/${PKGNAME}/RegAlloc-Graph-Spill.html
-share/doc/ghc/html/libraries/${PKGNAME}/RegAlloc-Graph-SpillClean.html
-share/doc/ghc/html/libraries/${PKGNAME}/RegAlloc-Graph-SpillCost.html
-share/doc/ghc/html/libraries/${PKGNAME}/RegAlloc-Graph-Stats.html
-share/doc/ghc/html/libraries/${PKGNAME}/RegAlloc-Graph-TrivColorable.html
-share/doc/ghc/html/libraries/${PKGNAME}/RegAlloc-Linear-Base.html
-share/doc/ghc/html/libraries/${PKGNAME}/RegAlloc-Linear-FreeRegs.html
-share/doc/ghc/html/libraries/${PKGNAME}/RegAlloc-Linear-JoinToTargets.html
-share/doc/ghc/html/libraries/${PKGNAME}/RegAlloc-Linear-Main.html
-share/doc/ghc/html/libraries/${PKGNAME}/RegAlloc-Linear-PPC-FreeRegs.html
-share/doc/ghc/html/libraries/${PKGNAME}/RegAlloc-Linear-SPARC-FreeRegs.html
-share/doc/ghc/html/libraries/${PKGNAME}/RegAlloc-Linear-StackMap.html
-share/doc/ghc/html/libraries/${PKGNAME}/RegAlloc-Linear-State.html
-share/doc/ghc/html/libraries/${PKGNAME}/RegAlloc-Linear-Stats.html
-share/doc/ghc/html/libraries/${PKGNAME}/RegAlloc-Linear-X86-FreeRegs.html
-share/doc/ghc/html/libraries/${PKGNAME}/RegAlloc-Liveness.html
-share/doc/ghc/html/libraries/${PKGNAME}/RegClass.html
-share/doc/ghc/html/libraries/${PKGNAME}/RnBinds.html
-share/doc/ghc/html/libraries/${PKGNAME}/RnEnv.html
-share/doc/ghc/html/libraries/${PKGNAME}/RnExpr.html
-share/doc/ghc/html/libraries/${PKGNAME}/RnHsDoc.html
-share/doc/ghc/html/libraries/${PKGNAME}/RnNames.html
-share/doc/ghc/html/libraries/${PKGNAME}/RnPat.html
-share/doc/ghc/html/libraries/${PKGNAME}/RnSource.html
-share/doc/ghc/html/libraries/${PKGNAME}/RnTypes.html
-share/doc/ghc/html/libraries/${PKGNAME}/RtClosureInspect.html
-share/doc/ghc/html/libraries/${PKGNAME}/Rules.html
-share/doc/ghc/html/libraries/${PKGNAME}/SAT.html
-share/doc/ghc/html/libraries/${PKGNAME}/SCCfinal.html
-share/doc/ghc/html/libraries/${PKGNAME}/SMRep.html
-share/doc/ghc/html/libraries/${PKGNAME}/SPARC-AddrMode.html
-share/doc/ghc/html/libraries/${PKGNAME}/SPARC-Base.html
-share/doc/ghc/html/libraries/${PKGNAME}/SPARC-CodeGen-Amode.html
-share/doc/ghc/html/libraries/${PKGNAME}/SPARC-CodeGen-Base.html
-share/doc/ghc/html/libraries/${PKGNAME}/SPARC-CodeGen-CondCode.html
-share/doc/ghc/html/libraries/${PKGNAME}/SPARC-CodeGen-Expand.html
-share/doc/ghc/html/libraries/${PKGNAME}/SPARC-CodeGen-Gen32.html
-share/doc/ghc/html/libraries/${PKGNAME}/SPARC-CodeGen-Gen64.html
-share/doc/ghc/html/libraries/${PKGNAME}/SPARC-CodeGen-Sanity.html
-share/doc/ghc/html/libraries/${PKGNAME}/SPARC-CodeGen.html
-share/doc/ghc/html/libraries/${PKGNAME}/SPARC-Cond.html
-share/doc/ghc/html/libraries/${PKGNAME}/SPARC-Imm.html
-share/doc/ghc/html/libraries/${PKGNAME}/SPARC-Instr.html
-share/doc/ghc/html/libraries/${PKGNAME}/SPARC-Ppr.html
-share/doc/ghc/html/libraries/${PKGNAME}/SPARC-RegPlate.html
-share/doc/ghc/html/libraries/${PKGNAME}/SPARC-Regs.html
-share/doc/ghc/html/libraries/${PKGNAME}/SPARC-ShortcutJump.html
-share/doc/ghc/html/libraries/${PKGNAME}/SPARC-Stack.html
-share/doc/ghc/html/libraries/${PKGNAME}/SRT.html
-share/doc/ghc/html/libraries/${PKGNAME}/Serialized.html
-share/doc/ghc/html/libraries/${PKGNAME}/SetLevels.html
-share/doc/ghc/html/libraries/${PKGNAME}/SimplCore.html
-share/doc/ghc/html/libraries/${PKGNAME}/SimplEnv.html
-share/doc/ghc/html/libraries/${PKGNAME}/SimplMonad.html
-share/doc/ghc/html/libraries/${PKGNAME}/SimplStg.html
-share/doc/ghc/html/libraries/${PKGNAME}/SimplUtils.html
-share/doc/ghc/html/libraries/${PKGNAME}/Simplify.html
-share/doc/ghc/html/libraries/${PKGNAME}/Size.html
-share/doc/ghc/html/libraries/${PKGNAME}/SpecConstr.html
-share/doc/ghc/html/libraries/${PKGNAME}/Specialise.html
-share/doc/ghc/html/libraries/${PKGNAME}/SrcLoc.html
-share/doc/ghc/html/libraries/${PKGNAME}/State.html
-share/doc/ghc/html/libraries/${PKGNAME}/StaticFlagParser.html
-share/doc/ghc/html/libraries/${PKGNAME}/StaticFlags.html
-share/doc/ghc/html/libraries/${PKGNAME}/StgCmm.html
-share/doc/ghc/html/libraries/${PKGNAME}/StgCmmBind.html
-share/doc/ghc/html/libraries/${PKGNAME}/StgCmmClosure.html
-share/doc/ghc/html/libraries/${PKGNAME}/StgCmmCon.html
-share/doc/ghc/html/libraries/${PKGNAME}/StgCmmEnv.html
-share/doc/ghc/html/libraries/${PKGNAME}/StgCmmExpr.html
-share/doc/ghc/html/libraries/${PKGNAME}/StgCmmForeign.html
-share/doc/ghc/html/libraries/${PKGNAME}/StgCmmGran.html
-share/doc/ghc/html/libraries/${PKGNAME}/StgCmmHeap.html
-share/doc/ghc/html/libraries/${PKGNAME}/StgCmmHpc.html
-share/doc/ghc/html/libraries/${PKGNAME}/StgCmmLayout.html
-share/doc/ghc/html/libraries/${PKGNAME}/StgCmmMonad.html
-share/doc/ghc/html/libraries/${PKGNAME}/StgCmmPrim.html
-share/doc/ghc/html/libraries/${PKGNAME}/StgCmmProf.html
-share/doc/ghc/html/libraries/${PKGNAME}/StgCmmTicky.html
-share/doc/ghc/html/libraries/${PKGNAME}/StgCmmUtils.html
-share/doc/ghc/html/libraries/${PKGNAME}/StgLint.html
-share/doc/ghc/html/libraries/${PKGNAME}/StgStats.html
-share/doc/ghc/html/libraries/${PKGNAME}/StgSyn.html
-share/doc/ghc/html/libraries/${PKGNAME}/Stream.html
-share/doc/ghc/html/libraries/${PKGNAME}/StringBuffer.html
-share/doc/ghc/html/libraries/${PKGNAME}/SysTools.html
-share/doc/ghc/html/libraries/${PKGNAME}/TargetReg.html
-share/doc/ghc/html/libraries/${PKGNAME}/TcAnnotations.html
-share/doc/ghc/html/libraries/${PKGNAME}/TcArrows.html
-share/doc/ghc/html/libraries/${PKGNAME}/TcBinds.html
-share/doc/ghc/html/libraries/${PKGNAME}/TcCanonical.html
-share/doc/ghc/html/libraries/${PKGNAME}/TcClassDcl.html
-share/doc/ghc/html/libraries/${PKGNAME}/TcDefaults.html
-share/doc/ghc/html/libraries/${PKGNAME}/TcDeriv.html
-share/doc/ghc/html/libraries/${PKGNAME}/TcEnv.html
-share/doc/ghc/html/libraries/${PKGNAME}/TcErrors.html
-share/doc/ghc/html/libraries/${PKGNAME}/TcEvidence.html
-share/doc/ghc/html/libraries/${PKGNAME}/TcExpr.html
-share/doc/ghc/html/libraries/${PKGNAME}/TcForeign.html
-share/doc/ghc/html/libraries/${PKGNAME}/TcGenDeriv.html
-share/doc/ghc/html/libraries/${PKGNAME}/TcGenGenerics.html
-share/doc/ghc/html/libraries/${PKGNAME}/TcHsSyn.html
-share/doc/ghc/html/libraries/${PKGNAME}/TcHsType.html
-share/doc/ghc/html/libraries/${PKGNAME}/TcIface.html
-share/doc/ghc/html/libraries/${PKGNAME}/TcInstDcls.html
-share/doc/ghc/html/libraries/${PKGNAME}/TcInteract.html
-share/doc/ghc/html/libraries/${PKGNAME}/TcMType.html
-share/doc/ghc/html/libraries/${PKGNAME}/TcMatches.html
-share/doc/ghc/html/libraries/${PKGNAME}/TcPat.html
-share/doc/ghc/html/libraries/${PKGNAME}/TcRnDriver.html
-share/doc/ghc/html/libraries/${PKGNAME}/TcRnMonad.html
-share/doc/ghc/html/libraries/${PKGNAME}/TcRnTypes.html
-share/doc/ghc/html/libraries/${PKGNAME}/TcRules.html
-share/doc/ghc/html/libraries/${PKGNAME}/TcSMonad.html
-share/doc/ghc/html/libraries/${PKGNAME}/TcSimplify.html
-share/doc/ghc/html/libraries/${PKGNAME}/TcSplice.html
-share/doc/ghc/html/libraries/${PKGNAME}/TcTyClsDecls.html
-share/doc/ghc/html/libraries/${PKGNAME}/TcTyDecls.html
-share/doc/ghc/html/libraries/${PKGNAME}/TcType.html
-share/doc/ghc/html/libraries/${PKGNAME}/TcUnify.html
-share/doc/ghc/html/libraries/${PKGNAME}/TidyPgm.html
-share/doc/ghc/html/libraries/${PKGNAME}/TrieMap.html
-share/doc/ghc/html/libraries/${PKGNAME}/TyCon.html
-share/doc/ghc/html/libraries/${PKGNAME}/Type.html
-share/doc/ghc/html/libraries/${PKGNAME}/TysPrim.html
-share/doc/ghc/html/libraries/${PKGNAME}/TysWiredIn.html
-share/doc/ghc/html/libraries/${PKGNAME}/UnariseStg.html
-share/doc/ghc/html/libraries/${PKGNAME}/Unify.html
-share/doc/ghc/html/libraries/${PKGNAME}/UniqFM.html
-share/doc/ghc/html/libraries/${PKGNAME}/UniqSet.html
-share/doc/ghc/html/libraries/${PKGNAME}/UniqSupply.html
-share/doc/ghc/html/libraries/${PKGNAME}/Unique.html
-share/doc/ghc/html/libraries/${PKGNAME}/Util.html
-share/doc/ghc/html/libraries/${PKGNAME}/Var.html
-share/doc/ghc/html/libraries/${PKGNAME}/VarEnv.html
-share/doc/ghc/html/libraries/${PKGNAME}/VarSet.html
-share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Builtins-Base.html
-share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Builtins-Initialise.html
-share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Builtins.html
-share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Convert.html
-share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Env.html
-share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Exp.html
-share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Generic-Description.html
-share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Generic-PADict.html
-share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Generic-PAMethods.html
-share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Generic-PData.html
-share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Monad-Base.html
-share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Monad-Global.html
-share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Monad-InstEnv.html
-share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Monad-Local.html
-share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Monad-Naming.html
-share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Monad.html
-share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Type-Classify.html
-share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Type-Env.html
-share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Type-TyConDecl.html
-share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Type-Type.html
-share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Utils-Base.html
-share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Utils-Closure.html
-share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Utils-Hoisting.html
-share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Utils-PADict.html
-share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Utils-Poly.html
-share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Utils.html
-share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Var.html
-share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Vect.html
-share/doc/ghc/html/libraries/${PKGNAME}/Vectorise.html
-share/doc/ghc/html/libraries/${PKGNAME}/WorkWrap.html
-share/doc/ghc/html/libraries/${PKGNAME}/WwLib.html
-share/doc/ghc/html/libraries/${PKGNAME}/X86-CodeGen.html
-share/doc/ghc/html/libraries/${PKGNAME}/X86-Cond.html
-share/doc/ghc/html/libraries/${PKGNAME}/X86-Instr.html
-share/doc/ghc/html/libraries/${PKGNAME}/X86-Ppr.html
-share/doc/ghc/html/libraries/${PKGNAME}/X86-RegInfo.html
-share/doc/ghc/html/libraries/${PKGNAME}/X86-Regs.html
-share/doc/ghc/html/libraries/${PKGNAME}/doc-index-124.html
-share/doc/ghc/html/libraries/${PKGNAME}/doc-index-36.html
-share/doc/ghc/html/libraries/${PKGNAME}/doc-index-42.html
-share/doc/ghc/html/libraries/${PKGNAME}/doc-index-43.html
-share/doc/ghc/html/libraries/${PKGNAME}/doc-index-45.html
-share/doc/ghc/html/libraries/${PKGNAME}/doc-index-47.html
-share/doc/ghc/html/libraries/${PKGNAME}/doc-index-60.html
-share/doc/ghc/html/libraries/${PKGNAME}/doc-index-61.html
-share/doc/ghc/html/libraries/${PKGNAME}/doc-index-62.html
-share/doc/ghc/html/libraries/${PKGNAME}/doc-index-95.html
-share/doc/ghc/html/libraries/${PKGNAME}/doc-index-A.html
-share/doc/ghc/html/libraries/${PKGNAME}/doc-index-All.html
-share/doc/ghc/html/libraries/${PKGNAME}/doc-index-B.html
-share/doc/ghc/html/libraries/${PKGNAME}/doc-index-C.html
-share/doc/ghc/html/libraries/${PKGNAME}/doc-index-D.html
-share/doc/ghc/html/libraries/${PKGNAME}/doc-index-E.html
-share/doc/ghc/html/libraries/${PKGNAME}/doc-index-F.html
-share/doc/ghc/html/libraries/${PKGNAME}/doc-index-G.html
-share/doc/ghc/html/libraries/${PKGNAME}/doc-index-H.html
-share/doc/ghc/html/libraries/${PKGNAME}/doc-index-I.html
-share/doc/ghc/html/libraries/${PKGNAME}/doc-index-J.html
-share/doc/ghc/html/libraries/${PKGNAME}/doc-index-K.html
-share/doc/ghc/html/libraries/${PKGNAME}/doc-index-L.html
-share/doc/ghc/html/libraries/${PKGNAME}/doc-index-M.html
-share/doc/ghc/html/libraries/${PKGNAME}/doc-index-N.html
-share/doc/ghc/html/libraries/${PKGNAME}/doc-index-O.html
-share/doc/ghc/html/libraries/${PKGNAME}/doc-index-P.html
-share/doc/ghc/html/libraries/${PKGNAME}/doc-index-Q.html
-share/doc/ghc/html/libraries/${PKGNAME}/doc-index-R.html
-share/doc/ghc/html/libraries/${PKGNAME}/doc-index-S.html
-share/doc/ghc/html/libraries/${PKGNAME}/doc-index-T.html
-share/doc/ghc/html/libraries/${PKGNAME}/doc-index-U.html
-share/doc/ghc/html/libraries/${PKGNAME}/doc-index-V.html
-share/doc/ghc/html/libraries/${PKGNAME}/doc-index-W.html
-share/doc/ghc/html/libraries/${PKGNAME}/doc-index-X.html
-share/doc/ghc/html/libraries/${PKGNAME}/doc-index-Y.html
-share/doc/ghc/html/libraries/${PKGNAME}/doc-index-Z.html
-share/doc/ghc/html/libraries/${PKGNAME}/doc-index.html
-share/doc/ghc/html/libraries/${PKGNAME}/frames.html
-share/doc/ghc/html/libraries/${PKGNAME}/ghc.haddock
-share/doc/ghc/html/libraries/${PKGNAME}/ghc.haddock.t
-share/doc/ghc/html/libraries/${PKGNAME}/ghc.txt
-share/doc/ghc/html/libraries/${PKGNAME}/haddock-util.js
-share/doc/ghc/html/libraries/${PKGNAME}/hslogo-16.png
-share/doc/ghc/html/libraries/${PKGNAME}/index-frames.html
-share/doc/ghc/html/libraries/${PKGNAME}/index.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Annotations.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_AsmCodeGen.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Avail.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Bag.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_BasicTypes.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_BinIface.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Binary.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Bitmap.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_BlockId.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_BreakArray.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_BufWrite.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_BuildTyCl.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_ByteCodeAsm.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_ByteCodeGen.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_ByteCodeInstr.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_ByteCodeItbls.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_ByteCodeLink.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CLabel.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CPrim.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CSE.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CgBindery.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CgCallConv.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CgCase.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CgClosure.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CgCon.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CgExpr.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CgExtCode.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CgForeignCall.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CgHeapery.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CgHpc.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CgInfoTbls.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CgLetNoEscape.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CgMonad.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CgParallel.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CgPrimOp.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CgProf.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CgStackery.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CgTailCall.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CgTicky.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CgUtils.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Check.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Class.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_ClosureInfo.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CmdLineParser.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Cmm.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CmmBuildInfoTables.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CmmCallConv.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CmmCommonBlockElim.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CmmContFlowOpt.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CmmCvt.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CmmExpr.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CmmInfo.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CmmLayoutStack.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CmmLex.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CmmLint.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CmmLive.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CmmMachOp.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CmmNode.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CmmOpt.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CmmParse.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CmmPipeline.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CmmProcPoint.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CmmRewriteAssignments.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CmmSink.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CmmType.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CmmUtils.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CodeGen.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CodeOutput.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Coercion.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Config.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Constants.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Convert.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CoreArity.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CoreFVs.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CoreLint.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CoreMonad.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CorePrep.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CoreSubst.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CoreSyn.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CoreTidy.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CoreToStg.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CoreUnfold.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CoreUtils.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_CostCentre.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Coverage.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Ctype.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_DataCon.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Debugger.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_DebuggerUtils.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Demand.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Desugar.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Digraph.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_DmdAnal.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_DriverMkDepend.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_DriverPhases.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_DriverPipeline.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_DsArrows.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_DsBinds.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_DsCCall.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_DsExpr.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_DsForeign.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_DsGRHSs.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_DsListComp.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_DsMeta.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_DsMonad.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_DsUtils.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_DynFlags.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_DynamicLoading.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Encoding.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_ErrUtils.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Exception.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_ExternalCore.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_FamInst.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_FamInstEnv.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_FastBool.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_FastFunctions.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_FastMutInt.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_FastString.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_FastTypes.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Finder.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Fingerprint.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_FiniteMap.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_FlagChecker.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_FloatIn.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_FloatOut.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_ForeignCall.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_FunDeps.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_GHC.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_GhcMake.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_GhcMonad.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_GhcPlugins.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_GraphBase.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_GraphColor.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_GraphOps.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_GraphPpr.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_HaddockUtils.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_HeaderInfo.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Hoopl-Dataflow.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Hoopl.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_HsBinds.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_HsDecls.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_HsDoc.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_HsExpr.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_HsImpExp.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_HsLit.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_HsPat.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_HsSyn.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_HsTypes.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_HsUtils.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_HscMain.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_HscStats.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_HscTypes.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_IOEnv.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Id.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_IdInfo.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_IfaceEnv.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_IfaceSyn.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_IfaceType.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Inst.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_InstEnv.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Instruction.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_InteractiveEval.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Kind.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_LexCore.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Lexer.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_LibFFI.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_LiberateCase.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Linker.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_ListSetOps.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Literal.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Llvm-AbsSyn.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Llvm-PpLlvm.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Llvm-Types.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Llvm.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_LlvmCodeGen-Base.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_LlvmCodeGen-CodeGen.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_LlvmCodeGen-Data.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_LlvmCodeGen-Ppr.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_LlvmCodeGen-Regs.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_LlvmCodeGen.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_LlvmMangler.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_LoadIface.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Match.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_MatchCon.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_MatchLit.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Maybes.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_MkCore.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_MkExternalCore.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_MkGraph.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_MkId.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_MkIface.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Module.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_MonadUtils.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_NCGMonad.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Name.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_NameEnv.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_NameSet.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_ObjLink.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_OccName.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_OccurAnal.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_OldCmm.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_OldCmmLint.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_OldCmmUtils.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_OldPprCmm.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_OptCoercion.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_OrdList.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Outputable.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_PIC.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_PPC-CodeGen.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_PPC-Cond.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_PPC-Instr.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_PPC-Ppr.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_PPC-RegInfo.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_PPC-Regs.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_PackageConfig.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Packages.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Pair.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Panic.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Parser.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_ParserCore.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_ParserCoreUtils.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Platform.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_PprBase.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_PprC.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_PprCmm.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_PprCmmDecl.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_PprCmmExpr.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_PprCore.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_PprExternalCore.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_PprTyThing.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_PrelInfo.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_PrelNames.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_PrelRules.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Pretty.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_PrimOp.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_ProfInit.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_RdrHsSyn.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_RdrName.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Reg.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_RegAlloc-Graph-ArchBase.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_RegAlloc-Graph-ArchX86.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_RegAlloc-Graph-Coalesce.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_RegAlloc-Graph-Main.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_RegAlloc-Graph-Spill.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_RegAlloc-Graph-SpillClean.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_RegAlloc-Graph-SpillCost.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_RegAlloc-Graph-Stats.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_RegAlloc-Graph-TrivColorable.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_RegAlloc-Linear-Base.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_RegAlloc-Linear-FreeRegs.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_RegAlloc-Linear-JoinToTargets.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_RegAlloc-Linear-Main.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_RegAlloc-Linear-PPC-FreeRegs.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_RegAlloc-Linear-SPARC-FreeRegs.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_RegAlloc-Linear-StackMap.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_RegAlloc-Linear-State.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_RegAlloc-Linear-Stats.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_RegAlloc-Linear-X86-FreeRegs.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_RegAlloc-Liveness.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_RegClass.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_RnBinds.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_RnEnv.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_RnExpr.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_RnHsDoc.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_RnNames.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_RnPat.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_RnSource.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_RnTypes.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_RtClosureInspect.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Rules.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_SAT.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_SCCfinal.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_SMRep.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_SPARC-AddrMode.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_SPARC-Base.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_SPARC-CodeGen-Amode.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_SPARC-CodeGen-Base.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_SPARC-CodeGen-CondCode.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_SPARC-CodeGen-Expand.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_SPARC-CodeGen-Gen32.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_SPARC-CodeGen-Gen64.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_SPARC-CodeGen-Sanity.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_SPARC-CodeGen.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_SPARC-Cond.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_SPARC-Imm.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_SPARC-Instr.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_SPARC-Ppr.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_SPARC-RegPlate.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_SPARC-Regs.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_SPARC-ShortcutJump.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_SPARC-Stack.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_SRT.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Serialized.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_SetLevels.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_SimplCore.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_SimplEnv.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_SimplMonad.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_SimplStg.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_SimplUtils.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Simplify.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Size.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_SpecConstr.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Specialise.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_SrcLoc.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_State.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_StaticFlagParser.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_StaticFlags.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_StgCmm.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_StgCmmBind.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_StgCmmClosure.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_StgCmmCon.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_StgCmmEnv.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_StgCmmExpr.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_StgCmmForeign.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_StgCmmGran.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_StgCmmHeap.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_StgCmmHpc.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_StgCmmLayout.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_StgCmmMonad.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_StgCmmPrim.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_StgCmmProf.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_StgCmmTicky.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_StgCmmUtils.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_StgLint.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_StgStats.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_StgSyn.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Stream.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_StringBuffer.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_SysTools.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_TargetReg.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_TcAnnotations.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_TcArrows.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_TcBinds.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_TcCanonical.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_TcClassDcl.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_TcDefaults.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_TcDeriv.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_TcEnv.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_TcErrors.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_TcEvidence.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_TcExpr.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_TcForeign.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_TcGenDeriv.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_TcGenGenerics.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_TcHsSyn.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_TcHsType.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_TcIface.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_TcInstDcls.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_TcInteract.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_TcMType.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_TcMatches.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_TcPat.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_TcRnDriver.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_TcRnMonad.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_TcRnTypes.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_TcRules.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_TcSMonad.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_TcSimplify.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_TcSplice.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_TcTyClsDecls.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_TcTyDecls.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_TcType.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_TcUnify.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_TidyPgm.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_TrieMap.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_TyCon.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Type.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_TysPrim.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_TysWiredIn.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_UnariseStg.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Unify.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_UniqFM.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_UniqSet.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_UniqSupply.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Unique.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Util.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Var.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_VarEnv.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_VarSet.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Builtins-Base.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Builtins-Initialise.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Builtins.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Convert.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Env.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Exp.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Generic-Description.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Generic-PADict.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Generic-PAMethods.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Generic-PData.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Monad-Base.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Monad-Global.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Monad-InstEnv.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Monad-Local.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Monad-Naming.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Monad.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Type-Classify.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Type-Env.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Type-TyConDecl.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Type-Type.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Utils-Base.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Utils-Closure.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Utils-Hoisting.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Utils-PADict.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Utils-Poly.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Utils.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Var.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Vect.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_WorkWrap.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_WwLib.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_X86-CodeGen.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_X86-Cond.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_X86-Instr.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_X86-Ppr.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_X86-RegInfo.html
-share/doc/ghc/html/libraries/${PKGNAME}/mini_X86-Regs.html
-share/doc/ghc/html/libraries/${PKGNAME}/minus.gif
-share/doc/ghc/html/libraries/${PKGNAME}/ocean.css
-share/doc/ghc/html/libraries/${PKGNAME}/plus.gif
-share/doc/ghc/html/libraries/${PKGNAME}/synopsis.png
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/GHC-CString.html
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/GHC-Debug.html
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/GHC-Magic.html
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/GHC-Prim.html
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/GHC-PrimopWrappers.html
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/GHC-Tuple.html
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/GHC-Types.html
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/LICENSE
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-42.html
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-43.html
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-45.html
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-47.html
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-60.html
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-61.html
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-62.html
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-A.html
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-All.html
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-B.html
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-C.html
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-D.html
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-E.html
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-F.html
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-G.html
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-I.html
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-K.html
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-L.html
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-M.html
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-N.html
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-O.html
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-P.html
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-Q.html
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-R.html
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-S.html
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-T.html
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-U.html
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-W.html
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-X.html
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-Y.html
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index.html
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/frames.html
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/ghc-prim.haddock
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/ghc-prim.haddock.t
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/ghc-prim.txt
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/haddock-util.js
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/hslogo-16.png
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/index-frames.html
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/index.html
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/mini_GHC-CString.html
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/mini_GHC-Debug.html
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/mini_GHC-Magic.html
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/mini_GHC-Prim.html
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/mini_GHC-PrimopWrappers.html
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/mini_GHC-Tuple.html
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/mini_GHC-Types.html
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/minus.gif
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/ocean.css
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/plus.gif
-share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/synopsis.png
-share/doc/ghc/html/libraries/haddock-util.js
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Control-Monad.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Data-Array.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Data-Bits.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Data-Char.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Data-Complex.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Data-Int.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Data-Ix.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Data-List.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Data-Maybe.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Data-Ratio.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Data-Word.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Foreign-C-Error.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Foreign-C-String.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Foreign-C-Types.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Foreign-C.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Foreign-ForeignPtr.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Foreign-Marshal-Alloc.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Foreign-Marshal-Array.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Foreign-Marshal-Error.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Foreign-Marshal-Utils.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Foreign-Marshal.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Foreign-Ptr.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Foreign-StablePtr.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Foreign-Storable.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Foreign.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/LICENSE
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Numeric.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Prelude.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/System-Environment.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/System-Exit.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/System-IO-Error.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/System-IO.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-124.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-33.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-36.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-37.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-38.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-42.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-43.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-45.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-46.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-47.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-58.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-60.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-61.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-62.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-92.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-94.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-A.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-All.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-B.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-C.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-D.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-E.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-F.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-G.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-H.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-I.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-J.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-L.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-M.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-N.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-O.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-P.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-Q.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-R.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-S.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-T.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-U.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-V.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-W.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-X.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-Z.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/frames.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/haddock-util.js
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/haskell2010.haddock
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/haskell2010.haddock.t
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/haskell2010.txt
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/hslogo-16.png
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/index-frames.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/index.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Control-Monad.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Data-Array.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Data-Bits.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Data-Char.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Data-Complex.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Data-Int.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Data-Ix.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Data-List.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Data-Maybe.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Data-Ratio.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Data-Word.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Foreign-C-Error.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Foreign-C-String.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Foreign-C-Types.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Foreign-C.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Foreign-ForeignPtr.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Foreign-Marshal-Alloc.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Foreign-Marshal-Array.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Foreign-Marshal-Error.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Foreign-Marshal-Utils.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Foreign-Marshal.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Foreign-Ptr.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Foreign-StablePtr.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Foreign-Storable.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Foreign.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Numeric.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Prelude.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_System-Environment.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_System-Exit.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_System-IO-Error.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_System-IO.html
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/minus.gif
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/ocean.css
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/plus.gif
-share/doc/ghc/html/libraries/haskell2010-1.1.1.0/synopsis.png
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/Array.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/Bits.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/CError.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/CForeign.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/CPUTime.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/CString.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/CTypes.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/Char.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/Complex.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/Directory.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/ForeignPtr.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/IO.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/Int.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/Ix.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/LICENSE
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/List.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/Locale.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/MarshalAlloc.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/MarshalArray.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/MarshalError.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/MarshalUtils.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/Maybe.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/Monad.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/Numeric.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/Prelude.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/Ptr.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/Random.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/Ratio.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/StablePtr.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/Storable.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/System.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/Time.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/Word.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-124.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-33.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-36.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-37.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-38.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-42.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-43.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-45.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-46.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-47.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-58.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-60.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-61.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-62.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-92.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-94.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-A.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-All.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-B.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-C.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-D.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-E.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-F.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-G.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-H.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-I.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-J.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-L.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-M.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-N.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-O.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-P.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-Q.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-R.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-S.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-T.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-U.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-V.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-W.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-X.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-Z.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/frames.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/haddock-util.js
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/haskell98.haddock
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/haskell98.haddock.t
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/haskell98.txt
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/hslogo-16.png
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/index-frames.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/index.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_Array.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_Bits.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_CError.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_CForeign.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_CPUTime.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_CString.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_CTypes.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_Char.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_Complex.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_Directory.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_ForeignPtr.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_IO.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_Int.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_Ix.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_List.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_Locale.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_MarshalAlloc.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_MarshalArray.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_MarshalError.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_MarshalUtils.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_Maybe.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_Monad.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_Numeric.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_Prelude.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_Ptr.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_Random.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_Ratio.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_StablePtr.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_Storable.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_System.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_Time.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_Word.html
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/minus.gif
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/ocean.css
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/plus.gif
-share/doc/ghc/html/libraries/haskell98-2.0.0.2/synopsis.png
-share/doc/ghc/html/libraries/hoopl-3.9.0.0/Compiler-Hoopl-Internals.html
-share/doc/ghc/html/libraries/hoopl-3.9.0.0/Compiler-Hoopl-Passes-DList.html
-share/doc/ghc/html/libraries/hoopl-3.9.0.0/Compiler-Hoopl-Passes-Dominator.html
-share/doc/ghc/html/libraries/hoopl-3.9.0.0/Compiler-Hoopl-Wrappers.html
-share/doc/ghc/html/libraries/hoopl-3.9.0.0/Compiler-Hoopl.html
-share/doc/ghc/html/libraries/hoopl-3.9.0.0/LICENSE
-share/doc/ghc/html/libraries/hoopl-3.9.0.0/doc-index-124.html
-share/doc/ghc/html/libraries/hoopl-3.9.0.0/doc-index-60.html
-share/doc/ghc/html/libraries/hoopl-3.9.0.0/doc-index-A.html
-share/doc/ghc/html/libraries/hoopl-3.9.0.0/doc-index-All.html
-share/doc/ghc/html/libraries/hoopl-3.9.0.0/doc-index-B.html
-share/doc/ghc/html/libraries/hoopl-3.9.0.0/doc-index-C.html
-share/doc/ghc/html/libraries/hoopl-3.9.0.0/doc-index-D.html
-share/doc/ghc/html/libraries/hoopl-3.9.0.0/doc-index-E.html
-share/doc/ghc/html/libraries/hoopl-3.9.0.0/doc-index-F.html
-share/doc/ghc/html/libraries/hoopl-3.9.0.0/doc-index-G.html
-share/doc/ghc/html/libraries/hoopl-3.9.0.0/doc-index-H.html
-share/doc/ghc/html/libraries/hoopl-3.9.0.0/doc-index-I.html
-share/doc/ghc/html/libraries/hoopl-3.9.0.0/doc-index-J.html
-share/doc/ghc/html/libraries/hoopl-3.9.0.0/doc-index-K.html
-share/doc/ghc/html/libraries/hoopl-3.9.0.0/doc-index-L.html
-share/doc/ghc/html/libraries/hoopl-3.9.0.0/doc-index-M.html
-share/doc/ghc/html/libraries/hoopl-3.9.0.0/doc-index-N.html
-share/doc/ghc/html/libraries/hoopl-3.9.0.0/doc-index-O.html
-share/doc/ghc/html/libraries/hoopl-3.9.0.0/doc-index-P.html
-share/doc/ghc/html/libraries/hoopl-3.9.0.0/doc-index-R.html
-share/doc/ghc/html/libraries/hoopl-3.9.0.0/doc-index-S.html
-share/doc/ghc/html/libraries/hoopl-3.9.0.0/doc-index-T.html
-share/doc/ghc/html/libraries/hoopl-3.9.0.0/doc-index-U.html
-share/doc/ghc/html/libraries/hoopl-3.9.0.0/doc-index-W.html
-share/doc/ghc/html/libraries/hoopl-3.9.0.0/doc-index.html
-share/doc/ghc/html/libraries/hoopl-3.9.0.0/frames.html
-share/doc/ghc/html/libraries/hoopl-3.9.0.0/haddock-util.js
-share/doc/ghc/html/libraries/hoopl-3.9.0.0/hoopl.haddock
-share/doc/ghc/html/libraries/hoopl-3.9.0.0/hoopl.haddock.t
-share/doc/ghc/html/libraries/hoopl-3.9.0.0/hoopl.txt
-share/doc/ghc/html/libraries/hoopl-3.9.0.0/hslogo-16.png
-share/doc/ghc/html/libraries/hoopl-3.9.0.0/index-frames.html
-share/doc/ghc/html/libraries/hoopl-3.9.0.0/index.html
-share/doc/ghc/html/libraries/hoopl-3.9.0.0/mini_Compiler-Hoopl-Internals.html
-share/doc/ghc/html/libraries/hoopl-3.9.0.0/mini_Compiler-Hoopl-Passes-DList.html
-share/doc/ghc/html/libraries/hoopl-3.9.0.0/mini_Compiler-Hoopl-Passes-Dominator.html
-share/doc/ghc/html/libraries/hoopl-3.9.0.0/mini_Compiler-Hoopl-Wrappers.html
-share/doc/ghc/html/libraries/hoopl-3.9.0.0/mini_Compiler-Hoopl.html
-share/doc/ghc/html/libraries/hoopl-3.9.0.0/minus.gif
-share/doc/ghc/html/libraries/hoopl-3.9.0.0/ocean.css
-share/doc/ghc/html/libraries/hoopl-3.9.0.0/plus.gif
-share/doc/ghc/html/libraries/hoopl-3.9.0.0/synopsis.png
-share/doc/ghc/html/libraries/hpc-0.6.0.0/LICENSE
-share/doc/ghc/html/libraries/hpc-0.6.0.0/Trace-Hpc-Mix.html
-share/doc/ghc/html/libraries/hpc-0.6.0.0/Trace-Hpc-Reflect.html
-share/doc/ghc/html/libraries/hpc-0.6.0.0/Trace-Hpc-Tix.html
-share/doc/ghc/html/libraries/hpc-0.6.0.0/Trace-Hpc-Util.html
-share/doc/ghc/html/libraries/hpc-0.6.0.0/doc-index.html
-share/doc/ghc/html/libraries/hpc-0.6.0.0/frames.html
-share/doc/ghc/html/libraries/hpc-0.6.0.0/haddock-util.js
-share/doc/ghc/html/libraries/hpc-0.6.0.0/hpc.haddock
-share/doc/ghc/html/libraries/hpc-0.6.0.0/hpc.haddock.t
-share/doc/ghc/html/libraries/hpc-0.6.0.0/hpc.txt
-share/doc/ghc/html/libraries/hpc-0.6.0.0/hslogo-16.png
-share/doc/ghc/html/libraries/hpc-0.6.0.0/index-frames.html
-share/doc/ghc/html/libraries/hpc-0.6.0.0/index.html
-share/doc/ghc/html/libraries/hpc-0.6.0.0/mini_Trace-Hpc-Mix.html
-share/doc/ghc/html/libraries/hpc-0.6.0.0/mini_Trace-Hpc-Reflect.html
-share/doc/ghc/html/libraries/hpc-0.6.0.0/mini_Trace-Hpc-Tix.html
-share/doc/ghc/html/libraries/hpc-0.6.0.0/mini_Trace-Hpc-Util.html
-share/doc/ghc/html/libraries/hpc-0.6.0.0/minus.gif
-share/doc/ghc/html/libraries/hpc-0.6.0.0/ocean.css
-share/doc/ghc/html/libraries/hpc-0.6.0.0/plus.gif
-share/doc/ghc/html/libraries/hpc-0.6.0.0/synopsis.png
-share/doc/ghc/html/libraries/hslogo-16.png
-share/doc/ghc/html/libraries/index-frames.html
-share/doc/ghc/html/libraries/index.html
-share/doc/ghc/html/libraries/integer-gmp-0.5.0.0/GHC-Integer-GMP-Internals.html
-share/doc/ghc/html/libraries/integer-gmp-0.5.0.0/GHC-Integer-Logarithms.html
-share/doc/ghc/html/libraries/integer-gmp-0.5.0.0/LICENSE
-share/doc/ghc/html/libraries/integer-gmp-0.5.0.0/doc-index.html
-share/doc/ghc/html/libraries/integer-gmp-0.5.0.0/frames.html
-share/doc/ghc/html/libraries/integer-gmp-0.5.0.0/haddock-util.js
-share/doc/ghc/html/libraries/integer-gmp-0.5.0.0/hslogo-16.png
-share/doc/ghc/html/libraries/integer-gmp-0.5.0.0/index-frames.html
-share/doc/ghc/html/libraries/integer-gmp-0.5.0.0/index.html
-share/doc/ghc/html/libraries/integer-gmp-0.5.0.0/integer-gmp.haddock
-share/doc/ghc/html/libraries/integer-gmp-0.5.0.0/integer-gmp.haddock.t
-share/doc/ghc/html/libraries/integer-gmp-0.5.0.0/integer-gmp.txt
-share/doc/ghc/html/libraries/integer-gmp-0.5.0.0/mini_GHC-Integer-GMP-Internals.html
-share/doc/ghc/html/libraries/integer-gmp-0.5.0.0/mini_GHC-Integer-Logarithms.html
-share/doc/ghc/html/libraries/integer-gmp-0.5.0.0/minus.gif
-share/doc/ghc/html/libraries/integer-gmp-0.5.0.0/ocean.css
-share/doc/ghc/html/libraries/integer-gmp-0.5.0.0/plus.gif
-share/doc/ghc/html/libraries/integer-gmp-0.5.0.0/synopsis.png
-share/doc/ghc/html/libraries/minus.gif
-share/doc/ghc/html/libraries/ocean.css
-share/doc/ghc/html/libraries/old-locale-1.0.0.5/LICENSE
-share/doc/ghc/html/libraries/old-locale-1.0.0.5/System-Locale.html
-share/doc/ghc/html/libraries/old-locale-1.0.0.5/doc-index.html
-share/doc/ghc/html/libraries/old-locale-1.0.0.5/frames.html
-share/doc/ghc/html/libraries/old-locale-1.0.0.5/haddock-util.js
-share/doc/ghc/html/libraries/old-locale-1.0.0.5/hslogo-16.png
-share/doc/ghc/html/libraries/old-locale-1.0.0.5/index-frames.html
-share/doc/ghc/html/libraries/old-locale-1.0.0.5/index.html
-share/doc/ghc/html/libraries/old-locale-1.0.0.5/mini_System-Locale.html
-share/doc/ghc/html/libraries/old-locale-1.0.0.5/minus.gif
-share/doc/ghc/html/libraries/old-locale-1.0.0.5/ocean.css
-share/doc/ghc/html/libraries/old-locale-1.0.0.5/old-locale.haddock
-share/doc/ghc/html/libraries/old-locale-1.0.0.5/old-locale.haddock.t
-share/doc/ghc/html/libraries/old-locale-1.0.0.5/old-locale.txt
-share/doc/ghc/html/libraries/old-locale-1.0.0.5/plus.gif
-share/doc/ghc/html/libraries/old-locale-1.0.0.5/synopsis.png
-share/doc/ghc/html/libraries/old-time-1.1.0.1/LICENSE
-share/doc/ghc/html/libraries/old-time-1.1.0.1/System-Time.html
-share/doc/ghc/html/libraries/old-time-1.1.0.1/doc-index.html
-share/doc/ghc/html/libraries/old-time-1.1.0.1/frames.html
-share/doc/ghc/html/libraries/old-time-1.1.0.1/haddock-util.js
-share/doc/ghc/html/libraries/old-time-1.1.0.1/hslogo-16.png
-share/doc/ghc/html/libraries/old-time-1.1.0.1/index-frames.html
-share/doc/ghc/html/libraries/old-time-1.1.0.1/index.html
-share/doc/ghc/html/libraries/old-time-1.1.0.1/mini_System-Time.html
-share/doc/ghc/html/libraries/old-time-1.1.0.1/minus.gif
-share/doc/ghc/html/libraries/old-time-1.1.0.1/ocean.css
-share/doc/ghc/html/libraries/old-time-1.1.0.1/old-time.haddock
-share/doc/ghc/html/libraries/old-time-1.1.0.1/old-time.haddock.t
-share/doc/ghc/html/libraries/old-time-1.1.0.1/old-time.txt
-share/doc/ghc/html/libraries/old-time-1.1.0.1/plus.gif
-share/doc/ghc/html/libraries/old-time-1.1.0.1/synopsis.png
-share/doc/ghc/html/libraries/plus.gif
-share/doc/ghc/html/libraries/pretty-1.1.1.0/LICENSE
-share/doc/ghc/html/libraries/pretty-1.1.1.0/Text-PrettyPrint-HughesPJ.html
-share/doc/ghc/html/libraries/pretty-1.1.1.0/Text-PrettyPrint.html
-share/doc/ghc/html/libraries/pretty-1.1.1.0/doc-index.html
-share/doc/ghc/html/libraries/pretty-1.1.1.0/frames.html
-share/doc/ghc/html/libraries/pretty-1.1.1.0/haddock-util.js
-share/doc/ghc/html/libraries/pretty-1.1.1.0/hslogo-16.png
-share/doc/ghc/html/libraries/pretty-1.1.1.0/index-frames.html
-share/doc/ghc/html/libraries/pretty-1.1.1.0/index.html
-share/doc/ghc/html/libraries/pretty-1.1.1.0/mini_Text-PrettyPrint-HughesPJ.html
-share/doc/ghc/html/libraries/pretty-1.1.1.0/mini_Text-PrettyPrint.html
-share/doc/ghc/html/libraries/pretty-1.1.1.0/minus.gif
-share/doc/ghc/html/libraries/pretty-1.1.1.0/ocean.css
-share/doc/ghc/html/libraries/pretty-1.1.1.0/plus.gif
-share/doc/ghc/html/libraries/pretty-1.1.1.0/pretty.haddock
-share/doc/ghc/html/libraries/pretty-1.1.1.0/pretty.haddock.t
-share/doc/ghc/html/libraries/pretty-1.1.1.0/pretty.txt
-share/doc/ghc/html/libraries/pretty-1.1.1.0/synopsis.png
-share/doc/ghc/html/libraries/process-1.1.0.2/LICENSE
-share/doc/ghc/html/libraries/process-1.1.0.2/System-Cmd.html
-share/doc/ghc/html/libraries/process-1.1.0.2/System-Process.html
-share/doc/ghc/html/libraries/process-1.1.0.2/doc-index.html
-share/doc/ghc/html/libraries/process-1.1.0.2/frames.html
-share/doc/ghc/html/libraries/process-1.1.0.2/haddock-util.js
-share/doc/ghc/html/libraries/process-1.1.0.2/hslogo-16.png
-share/doc/ghc/html/libraries/process-1.1.0.2/index-frames.html
-share/doc/ghc/html/libraries/process-1.1.0.2/index.html
-share/doc/ghc/html/libraries/process-1.1.0.2/mini_System-Cmd.html
-share/doc/ghc/html/libraries/process-1.1.0.2/mini_System-Process.html
-share/doc/ghc/html/libraries/process-1.1.0.2/minus.gif
-share/doc/ghc/html/libraries/process-1.1.0.2/ocean.css
-share/doc/ghc/html/libraries/process-1.1.0.2/plus.gif
-share/doc/ghc/html/libraries/process-1.1.0.2/process.haddock
-share/doc/ghc/html/libraries/process-1.1.0.2/process.haddock.t
-share/doc/ghc/html/libraries/process-1.1.0.2/process.txt
-share/doc/ghc/html/libraries/process-1.1.0.2/synopsis.png
-share/doc/ghc/html/libraries/prologue.txt
-share/doc/ghc/html/libraries/synopsis.png
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/LICENSE
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/Language-Haskell-TH-Lib.html
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/Language-Haskell-TH-Ppr.html
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/Language-Haskell-TH-PprLib.html
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/Language-Haskell-TH-Quote.html
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/Language-Haskell-TH-Syntax.html
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/Language-Haskell-TH.html
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-36.html
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-60.html
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-A.html
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-All.html
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-B.html
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-C.html
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-D.html
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-E.html
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-F.html
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-G.html
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-H.html
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-I.html
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-J.html
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-K.html
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-L.html
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-M.html
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-N.html
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-O.html
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-P.html
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-Q.html
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-R.html
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-S.html
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-T.html
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-U.html
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-V.html
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-W.html
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index.html
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/frames.html
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/haddock-util.js
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/hslogo-16.png
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/index-frames.html
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/index.html
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/mini_Language-Haskell-TH-Lib.html
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/mini_Language-Haskell-TH-Ppr.html
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/mini_Language-Haskell-TH-PprLib.html
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/mini_Language-Haskell-TH-Quote.html
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/mini_Language-Haskell-TH-Syntax.html
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/mini_Language-Haskell-TH.html
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/minus.gif
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/ocean.css
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/plus.gif
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/synopsis.png
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/template-haskell.haddock
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/template-haskell.haddock.t
-share/doc/ghc/html/libraries/template-haskell-2.8.0.0/template-haskell.txt
-share/doc/ghc/html/libraries/time-1.4.0.1/Data-Time-Calendar-Easter.html
-share/doc/ghc/html/libraries/time-1.4.0.1/Data-Time-Calendar-Julian.html
-share/doc/ghc/html/libraries/time-1.4.0.1/Data-Time-Calendar-MonthDay.html
-share/doc/ghc/html/libraries/time-1.4.0.1/Data-Time-Calendar-OrdinalDate.html
-share/doc/ghc/html/libraries/time-1.4.0.1/Data-Time-Calendar-WeekDate.html
-share/doc/ghc/html/libraries/time-1.4.0.1/Data-Time-Calendar.html
-share/doc/ghc/html/libraries/time-1.4.0.1/Data-Time-Clock-POSIX.html
-share/doc/ghc/html/libraries/time-1.4.0.1/Data-Time-Clock-TAI.html
-share/doc/ghc/html/libraries/time-1.4.0.1/Data-Time-Clock.html
-share/doc/ghc/html/libraries/time-1.4.0.1/Data-Time-Format.html
-share/doc/ghc/html/libraries/time-1.4.0.1/Data-Time-LocalTime.html
-share/doc/ghc/html/libraries/time-1.4.0.1/Data-Time.html
-share/doc/ghc/html/libraries/time-1.4.0.1/LICENSE
-share/doc/ghc/html/libraries/time-1.4.0.1/doc-index.html
-share/doc/ghc/html/libraries/time-1.4.0.1/frames.html
-share/doc/ghc/html/libraries/time-1.4.0.1/haddock-util.js
-share/doc/ghc/html/libraries/time-1.4.0.1/hslogo-16.png
-share/doc/ghc/html/libraries/time-1.4.0.1/index-frames.html
-share/doc/ghc/html/libraries/time-1.4.0.1/index.html
-share/doc/ghc/html/libraries/time-1.4.0.1/mini_Data-Time-Calendar-Easter.html
-share/doc/ghc/html/libraries/time-1.4.0.1/mini_Data-Time-Calendar-Julian.html
-share/doc/ghc/html/libraries/time-1.4.0.1/mini_Data-Time-Calendar-MonthDay.html
-share/doc/ghc/html/libraries/time-1.4.0.1/mini_Data-Time-Calendar-OrdinalDate.html
-share/doc/ghc/html/libraries/time-1.4.0.1/mini_Data-Time-Calendar-WeekDate.html
-share/doc/ghc/html/libraries/time-1.4.0.1/mini_Data-Time-Calendar.html
-share/doc/ghc/html/libraries/time-1.4.0.1/mini_Data-Time-Clock-POSIX.html
-share/doc/ghc/html/libraries/time-1.4.0.1/mini_Data-Time-Clock-TAI.html
-share/doc/ghc/html/libraries/time-1.4.0.1/mini_Data-Time-Clock.html
-share/doc/ghc/html/libraries/time-1.4.0.1/mini_Data-Time-Format.html
-share/doc/ghc/html/libraries/time-1.4.0.1/mini_Data-Time-LocalTime.html
-share/doc/ghc/html/libraries/time-1.4.0.1/mini_Data-Time.html
-share/doc/ghc/html/libraries/time-1.4.0.1/minus.gif
-share/doc/ghc/html/libraries/time-1.4.0.1/ocean.css
-share/doc/ghc/html/libraries/time-1.4.0.1/plus.gif
-share/doc/ghc/html/libraries/time-1.4.0.1/synopsis.png
-share/doc/ghc/html/libraries/time-1.4.0.1/time.haddock
-share/doc/ghc/html/libraries/time-1.4.0.1/time.haddock.t
-share/doc/ghc/html/libraries/time-1.4.0.1/time.txt
-share/doc/ghc/html/libraries/unix-2.6.0.1/LICENSE
-share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-ByteString-FilePath.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-ByteString.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-Directory-ByteString.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-Directory.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-DynamicLinker-ByteString.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-DynamicLinker-Module-ByteString.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-DynamicLinker-Module.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-DynamicLinker-Prim.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-DynamicLinker.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-Env-ByteString.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-Env.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-Error.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-Files-ByteString.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-Files.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-IO-ByteString.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-IO.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-Process-ByteString.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-Process-Internals.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-Process.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-Resource.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-Semaphore.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-SharedMem.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-Signals-Exts.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-Signals.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-Temp-ByteString.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-Temp.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-Terminal-ByteString.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-Terminal.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-Time.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-Unistd.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-User.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/doc-index-A.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/doc-index-All.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/doc-index-B.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/doc-index-C.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/doc-index-D.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/doc-index-E.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/doc-index-F.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/doc-index-G.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/doc-index-H.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/doc-index-I.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/doc-index-J.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/doc-index-K.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/doc-index-L.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/doc-index-M.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/doc-index-N.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/doc-index-O.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/doc-index-P.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/doc-index-Q.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/doc-index-R.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/doc-index-S.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/doc-index-T.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/doc-index-U.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/doc-index-V.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/doc-index-W.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/doc-index.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/frames.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/haddock-util.js
-share/doc/ghc/html/libraries/unix-2.6.0.1/hslogo-16.png
-share/doc/ghc/html/libraries/unix-2.6.0.1/index-frames.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/index.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-ByteString-FilePath.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-ByteString.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-Directory-ByteString.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-Directory.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-DynamicLinker-ByteString.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-DynamicLinker-Module-ByteString.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-DynamicLinker-Module.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-DynamicLinker-Prim.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-DynamicLinker.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-Env-ByteString.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-Env.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-Error.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-Files-ByteString.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-Files.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-IO-ByteString.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-IO.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-Process-ByteString.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-Process-Internals.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-Process.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-Resource.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-Semaphore.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-SharedMem.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-Signals-Exts.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-Signals.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-Temp-ByteString.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-Temp.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-Terminal-ByteString.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-Terminal.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-Time.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-Unistd.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-User.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix.html
-share/doc/ghc/html/libraries/unix-2.6.0.1/minus.gif
-share/doc/ghc/html/libraries/unix-2.6.0.1/ocean.css
-share/doc/ghc/html/libraries/unix-2.6.0.1/plus.gif
-share/doc/ghc/html/libraries/unix-2.6.0.1/synopsis.png
-share/doc/ghc/html/libraries/unix-2.6.0.1/unix.haddock
-share/doc/ghc/html/libraries/unix-2.6.0.1/unix.haddock.t
-share/doc/ghc/html/libraries/unix-2.6.0.1/unix.txt
-share/doc/ghc/html/users_guide/License.html
-share/doc/ghc/html/users_guide/an-external-representation-for-the-ghc-core-language-for-ghc-6.10.html
-share/doc/ghc/html/users_guide/arrow-notation.html
-share/doc/ghc/html/users_guide/assertions.html
-share/doc/ghc/html/users_guide/bang-patterns.html
-share/doc/ghc/html/users_guide/bug-reporting.html
-share/doc/ghc/html/users_guide/bugs-and-infelicities.html
-share/doc/ghc/html/users_guide/bugs.html
-share/doc/ghc/html/users_guide/ch04s02.html
-share/doc/ghc/html/users_guide/code-generators.html
-share/doc/ghc/html/users_guide/compiler-plugins.html
-share/doc/ghc/html/users_guide/constraint-kind.html
-share/doc/ghc/html/users_guide/data-type-extensions.html
-share/doc/ghc/html/users_guide/defer-type-errors.html
-share/doc/ghc/html/users_guide/deriving.html
-share/doc/ghc/html/users_guide/equality-constraints.html
-share/doc/ghc/html/users_guide/ext-core.html
-share/doc/ghc/html/users_guide/extending-ghc.html
-share/doc/ghc/html/users_guide/external-grammar-of-core.html
-share/doc/ghc/html/users_guide/faster.html
-share/doc/ghc/html/users_guide/ffi-ghc.html
-share/doc/ghc/html/users_guide/ffi.html
-share/doc/ghc/html/users_guide/file-suffixes.html
-share/doc/ghc/html/users_guide/flag-reference.html
-share/doc/ghc/html/users_guide/fptools.css
-share/doc/ghc/html/users_guide/generic-classes.html
-share/doc/ghc/html/users_guide/generic-programming.html
-share/doc/ghc/html/users_guide/ghc-as-a-library.html
-share/doc/ghc/html/users_guide/ghc-language-features.html
-share/doc/ghc/html/users_guide/ghci-commands.html
-share/doc/ghc/html/users_guide/ghci-compiled.html
-share/doc/ghc/html/users_guide/ghci-cygwin.html
-share/doc/ghc/html/users_guide/ghci-debugger.html
-share/doc/ghc/html/users_guide/ghci-dot-files.html
-share/doc/ghc/html/users_guide/ghci-faq.html
-share/doc/ghc/html/users_guide/ghci-invocation.html
-share/doc/ghc/html/users_guide/ghci-obj.html
-share/doc/ghc/html/users_guide/ghci-set.html
-share/doc/ghc/html/users_guide/ghci-windows.html
-share/doc/ghc/html/users_guide/ghci.html
-share/doc/ghc/html/users_guide/hp2ps.html
-share/doc/ghc/html/users_guide/hpc.html
-share/doc/ghc/html/users_guide/hsc2hs.html
-share/doc/ghc/html/users_guide/index.html
-share/doc/ghc/html/users_guide/informal-semantics.html
-share/doc/ghc/html/users_guide/interactive-evaluation.html
-share/doc/ghc/html/users_guide/introduction-GHC.html
-share/doc/ghc/html/users_guide/ix01.html
-share/doc/ghc/html/users_guide/kind-polymorphism.html
-share/doc/ghc/html/users_guide/lang-parallel.html
-share/doc/ghc/html/users_guide/library-differences.html
-share/doc/ghc/html/users_guide/loading-source-files.html
-share/doc/ghc/html/users_guide/mailing-lists-GHC.html
-share/doc/ghc/html/users_guide/modes.html
-share/doc/ghc/html/users_guide/monomorphism.html
-share/doc/ghc/html/users_guide/options-debugging.html
-share/doc/ghc/html/users_guide/options-help.html
-share/doc/ghc/html/users_guide/options-optimise.html
-share/doc/ghc/html/users_guide/options-phases.html
-share/doc/ghc/html/users_guide/options-platform.html
-share/doc/ghc/html/users_guide/options-sanity.html
-share/doc/ghc/html/users_guide/other-type-extensions.html
-share/doc/ghc/html/users_guide/packages.html
-share/doc/ghc/html/users_guide/pragmas.html
-share/doc/ghc/html/users_guide/primitive-module.html
-share/doc/ghc/html/users_guide/primitives.html
-share/doc/ghc/html/users_guide/prof-compiler-options.html
-share/doc/ghc/html/users_guide/prof-heap.html
-share/doc/ghc/html/users_guide/prof-threaded.html
-share/doc/ghc/html/users_guide/prof-time-options.html
-share/doc/ghc/html/users_guide/prof_scc.png
-share/doc/ghc/html/users_guide/profiling.html
-share/doc/ghc/html/users_guide/promotion.html
-share/doc/ghc/html/users_guide/release-7-6-1.html
-share/doc/ghc/html/users_guide/release-7-6-2.html
-share/doc/ghc/html/users_guide/release-7-6-3.html
-share/doc/ghc/html/users_guide/rewrite-rules.html
-share/doc/ghc/html/users_guide/runghc.html
-share/doc/ghc/html/users_guide/runtime-control.html
-share/doc/ghc/html/users_guide/safe-haskell.html
-share/doc/ghc/html/users_guide/separate-compilation.html
-share/doc/ghc/html/users_guide/smaller.html
-share/doc/ghc/html/users_guide/sooner-faster-quicker.html
-share/doc/ghc/html/users_guide/special-ids.html
-share/doc/ghc/html/users_guide/static-dynamic-flags.html
-share/doc/ghc/html/users_guide/syntax-extns.html
-share/doc/ghc/html/users_guide/template-haskell.html
-share/doc/ghc/html/users_guide/terminal-interaction.html
-share/doc/ghc/html/users_guide/thriftier.html
-share/doc/ghc/html/users_guide/ticky-ticky.html
-share/doc/ghc/html/users_guide/type-class-extensions.html
-share/doc/ghc/html/users_guide/type-families.html
-share/doc/ghc/html/users_guide/using-concurrent.html
-share/doc/ghc/html/users_guide/using-ghc.html
-share/doc/ghc/html/users_guide/using-shared-libs.html
-share/doc/ghc/html/users_guide/using-smp.html
-share/doc/ghc/html/users_guide/utils.html
-share/doc/ghc/html/users_guide/version-numbering.html
-share/doc/ghc/html/users_guide/win32-dlls.html
-share/doc/ghc/html/users_guide/win32.html
-share/doc/ghc/html/users_guide/wrong-compilee.html
-share/doc/ghc/html/users_guide/wrong.html
Index: TODO
===================================================================
RCS file: TODO
diff -N TODO
--- TODO	23 Feb 2015 23:17:20 -0000	1.4
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,31 +0,0 @@
-.. -*- rst -*-
-
-wip/ghc TODO
-============
-
-* Modify configure.ac and rules/build-package-data.mk to allow
-  ``--with-curses-{includes,libraries}`` to be passed to the top-level
-  ``configure``, and send a patch to the upstream.
-
-  -> Done: https://ghc.haskell.org/trac/ghc/ticket/10096
-
-* Add the following ``./configure`` flags to eliminate
-  ``patch-Makefile`` and ``patch-ghc.mk``:
-
-  * ``--with-dist-archiver={bzip2,xz} [default=bzip2]``
-  * ``BZIP2FLAGS``
-  * ``XZFLAGS``
-
-* Build more bootstrapping compilers to support more platforms.
-
-
-How to build a bootstrapping compiler
--------------------------------------
-
-You need a working compiler to build one. If you think there are no
-bindists for your platform, you may need to cross-build a compiler
-yourself: `Cross-compiling GHC
-<http://hackage.haskell.org/trac/ghc/wiki/Building/CrossCompiling>`_
-
-Assuming you have a working ghc in your PATH, just run ``bmake clean
-&& bmake bootstrap`` and see if you are lucky enough.
Index: bootstrap.mk
===================================================================
RCS file: /cvsroot/pkgsrc/lang/ghc7/bootstrap.mk,v
retrieving revision 1.26
diff -u -r1.26 bootstrap.mk
--- bootstrap.mk	3 Nov 2019 19:04:00 -0000	1.26
+++ bootstrap.mk	28 Dec 2019 17:32:49 -0000
@@ -6,51 +6,46 @@
 #   This variable is set to the name of compressed archive file of a
 #   bootstrapping compiler for the current platform.
 #
-# BOOT_TARBALL
-#   Similar to BOOT_ARCHIVE, but "*.tar" not "*.tar.xz".
-#
 # BOOT_VERSION
 #   Version of the bootstrapping compiler to use. This can be
 #   overriden for specific platforms.
 #
 .include "../../mk/bsd.prefs.mk"
 
-# Use the same version as the package itself by default.
-BOOT_VERSION:=	${PKGNAME:C/^.*-//}
+# Notes on version dependencies:
+# * GHC 8.8.1 requires 8.4 or later to bootstrap.
+# * GHC 8.4.4 requires 8.0 or later to bootstrap.
+# * GHC 8.0.2 requires 7.8 or later to bootstrap.
+# * GHC 7.10.3 requires 7.6 or later to bootstrap.
 
-.if !empty(MACHINE_PLATFORM:MDarwin-*-powerpc) || make(distinfo)
+.if !empty(MACHINE_PLATFORM:MDarwin-*-powerpc) || make(distinfo) || make (makesum) || make(mdi)
+BOOT_VERSION:=	7.6.3
 BOOT_ARCHIVE:=	ghc-${BOOT_VERSION}-boot-powerpc-apple-darwin.tar.xz
 DISTFILES:=	${DISTFILES} ${BOOT_ARCHIVE} # Available in LOCAL_PORTS
 .endif
 
-.if !empty(MACHINE_PLATFORM:MFreeBSD-*-i386) || make(distinfo)
+.if !empty(MACHINE_PLATFORM:MFreeBSD-*-i386) || make(distinfo) || make (makesum) || make(mdi)
+BOOT_VERSION:=	7.6.3
 BOOT_ARCHIVE:=	ghc-${BOOT_VERSION}-boot-i386-unknown-freebsd.tar.xz
 DISTFILES:=	${DISTFILES} ${BOOT_ARCHIVE} # Available in LOCAL_PORTS
 .endif
 
-.if !empty(MACHINE_PLATFORM:MLinux-*-x86_64) || make(distinfo)
-BOOT_ARCHIVE:=	ghc-${BOOT_VERSION}-boot-x86_64-unknown-linux.tar.xz
-#DISTFILES:=	${DISTFILES} ${BOOT_ARCHIVE}
-.endif
-
-.if !empty(MACHINE_PLATFORM:MNetBSD-*-i386) || make(distinfo)
-BOOT_ARCHIVE:=	ghc-${BOOT_VERSION}-boot-i386-unknown-netbsd.tar.xz
-#DISTFILES:=	${DISTFILES} ${BOOT_ARCHIVE}
-.endif
-
-.if !empty(MACHINE_PLATFORM:MNetBSD-*-x86_64) || make(distinfo)
+.if !empty(MACHINE_PLATFORM:MNetBSD-*-x86_64) || make(distinfo) || make (makesum) || make(mdi)
+BOOT_VERSION:=	7.10.3
 BOOT_ARCHIVE:=	ghc-${BOOT_VERSION}-boot-x86_64-unknown-netbsd.tar.xz
 DISTFILES:=	${DISTFILES} ${BOOT_ARCHIVE} # Available in LOCAL_PORTS
 .endif
 
-.if !empty(MACHINE_PLATFORM:MSunOS-5.11-i386) || make(distinfo)
+.if !empty(MACHINE_PLATFORM:MSunOS-*-i386) || make(distinfo) || make (makesum) || make(mdi)
+BOOT_VERSION:=	7.6.3
 BOOT_ARCHIVE:=	ghc-${BOOT_VERSION}-boot-i386-unknown-solaris2.tar.xz
-#DISTFILES:=	${DISTFILES} ${BOOT_ARCHIVE}
+DISTFILES:=	${DISTFILES} ${BOOT_ARCHIVE} # Available in LOCAL_PORTS
 .endif
 
-.if !empty(MACHINE_PLATFORM:MSunOS-5.11-x86_64) || make(distinfo)
+.if !empty(MACHINE_PLATFORM:MSunOS-*-x86_64) || make(distinfo) || make (makesum) || make(mdi)
+BOOT_VERSION:=	7.6.3
 BOOT_ARCHIVE:=	ghc-${BOOT_VERSION}-boot-x86_64-unknown-solaris2.tar.xz
-#DISTFILES:=	${DISTFILES} ${BOOT_ARCHIVE}
+DISTFILES:=	${DISTFILES} ${BOOT_ARCHIVE} # Available in LOCAL_PORTS
 .endif
 
 .if empty(BOOT_ARCHIVE)
@@ -65,8 +60,6 @@
 SITES.${i}?=	${MASTER_SITE_LOCAL}
 .endfor
 
-BOOT_TARBALL=	${BOOT_ARCHIVE:C/\.xz$//}
-
 # Existence of libelf makes LeadingUnderscore being "NO", which is
 # incorrect for this platform. See ${WRKSRC}/aclocal.m4
 # (FP_LEADING_UNDERSCORE)
@@ -85,7 +78,7 @@
 .endif
 
 # current bootstrap binary kit for SmartOS is built with ncurses5
-.if !empty(MACHINE_PLATFORM:MSunOS-5.11-*) && !empty(OS_VARIANT:U:MSmartOS)
+.if !empty(MACHINE_PLATFORM:MSunOS-*) && !empty(OS_VARIANT:U:MSmartOS)
 BUILD_DEPENDS+=	ncurses>=5.0:../../devel/ncurses
 .endif
 
@@ -96,22 +89,23 @@
 # Install a bootstrapping compiler directly into TOOLS_DIR so that
 # ./configure can find it.
 #
-USE_TOOLS+=	gmake xzcat xz
+USE_TOOLS+=	gmake xzcat xz gtar
 
 pre-configure:
-	@${TEST} -f ${DISTDIR:Q}/${DIST_SUBDIR:Q}/${BOOT_ARCHIVE} || \
+	${RUN}${TEST} -f ${DISTDIR:Q}/${DIST_SUBDIR:Q}/${BOOT_ARCHIVE} || \
 	${FAIL_MSG}  "Put your trusted bootstrap archive as ${DISTDIR}/${DIST_SUBDIR}/${BOOT_ARCHIVE}"
 
 	@${PHASE_MSG} "Extracting bootstrapping compiler for ${PKGNAME}"
-	${RUN} ${MKDIR} ${WRKDIR:Q}/build-extract
-	${RUN} cd ${WRKDIR:Q}/build-extract && \
-		${EXTRACT_CMD_DEFAULT} ${DISTDIR:Q}/${DIST_SUBDIR:Q}/${BOOT_ARCHIVE}
+	${RUN}${MKDIR} ${WRKDIR:Q}/build-extract
+	${RUN}cd ${WRKDIR:Q}/build-extract && \
+		${XZCAT} ${DISTDIR:Q}/${DIST_SUBDIR:Q}/${BOOT_ARCHIVE} | \
+		${GTAR} -xf -
 
 # It is important to install the stage-0 compiler with our rpath flags
 # configured, otherwise it will produce executables with no rpath and
 # fail in the configure phase.
 	@${PHASE_MSG} "Preparing bootstrapping compiler for ${PKGNAME}"
-	${RUN} cd ${WRKDIR:Q}/build-extract/${PKGNAME_NOREV}-boot && \
+	${RUN}cd ${WRKDIR:Q}/build-extract/${PKGNAME_NOREV}-boot && \
 		${PKGSRC_SETENV} ${CONFIGURE_ENV} ${SH} ./configure \
 			--prefix=${TOOLS_DIR:Q} && \
 		${MAKE_PROGRAM} install
@@ -126,6 +120,13 @@
 # dependencies, otherwise the resulting binary can easily get
 # unusable.
 #
+# In order to build a bootkit you need a working GHC in your PATH. If
+# you think there are no bindists for your platform, you may need to
+# cross-build a compiler yourself:
+# http://hackage.haskell.org/trac/ghc/wiki/Building/CrossCompiling
+#
+# Assuming you have a working ghc in your PATH, just run ``bmake clean
+# && bmake bootstrap`` and see if you are lucky enough.
 
 # We don't want our bootkits to have a run-time dependency on
 # libgcc. In fact GHC's implementation of Haskell exception handling
@@ -184,19 +185,26 @@
 # barrier. See ../../mk/buildlink3/bsd.buildlink3.mk and
 # ../../mk/bsd.pkg.barrier.mk
 .PHONY: bootstrap
+BOOT_ARCHIVE.new=		${BOOT_ARCHIVE:S/-${BOOT_VERSION}-/-${PKGVERSION_NOREV}-/}
 .if make(bootstrap)
 _BARRIER_CMDLINE_TARGETS+=	bootstrap
 .endif
 .if !defined(_PKGSRC_BARRIER)
 bootstrap: barrier
 .else
-bootstrap: pre-bootstrap .WAIT ${WRKDIR}/${BOOT_ARCHIVE} .WAIT post-bootstrap
+bootstrap: pre-bootstrap .WAIT ${WRKDIR}/stamp-dist-boot .WAIT post-bootstrap
 .endif
 
+# For normal build we use pkgsrc libffi, but for bootkits we can't do
+# that because that would mean bootkits have run-time dependency on
+# it. So we build the bundled one and statically link with it.
+CONFIGURE_ARGS.boot=	${CONFIGURE_ARGS.common}
+CONFIGURE_ARGS.boot+=	--without-system-libffi
+
 .PHONY: pre-bootstrap
 pre-bootstrap: wrapper
 .if empty(BOOT_GHC_LIBDIR)
-	@if ${BOOT_GHC_LIBDIR_CMD} 2>/dev/null 1>&2; then \
+	${RUN}if ${BOOT_GHC_LIBDIR_CMD} 2>/dev/null 1>&2; then \
 		${ERROR_MSG} "Running \"${BOOT_GHC_LIBDIR_CMD}\" has failed during wrapper phase."; \
 		${FAIL_MSG}  "Please run \"${MAKE} clean\" and try again."; \
 	else \
@@ -207,7 +215,7 @@
 	fi
 .endif
 # ${_COOKIE.configure} is not defined yet so we can't use .if here.
-	@if ${TEST} -f ${_COOKIE.configure}; then \
+	${RUN}if ${TEST} -f ${_COOKIE.configure}; then \
 		${ERROR_MSG} "You have already configured the package in a way\
 		that building bootstrapping compiler is impossible."; \
 		${FAIL_MSG}  "Please run \"${MAKE} clean\" first."; \
@@ -225,40 +233,28 @@
 		${WRKDIR}/lndir -silent ../${PKGNAME_NOREV:Q}
 	${TOUCH} ${.TARGET}
 
-# For terminfo_CONFIGURE_OPTS, see
-# https://ghc.haskell.org/trac/ghc/ticket/10096
 ${WRKDIR}/stamp-configure-boot: ${WRKDIR}/stamp-lndir-boot
 	@${PHASE_MSG} "Configuring bootstrapping compiler ${PKGNAME_NOREV}"
 	${MKDIR} ${WRKDIR:Q}/build-boot
 	cd ${WRKDIR:Q}/build-boot && \
-		${PKGSRC_SETENV} ${CONFIGURE_ENV} ${SH} ./configure ${CONFIGURE_ARGS} && \
-		${CP} -f ${FILESDIR:Q}/bootstrap.build.mk mk/build.mk && \
-		${ECHO} >> mk/build.mk && \
-		${ECHO} "libraries/terminfo_CONFIGURE_OPTS += \
-			--configure-option=--with-curses-includes=${BUILDLINK_PREFIX.curses:Q}/${BUILDLINK_INCDIRS.curses:Q} \
-			--configure-option=--with-curses-libraries=${BUILDLINK_PREFIX.curses:Q}/${BUILDLINK_LIBDIRS.curses:Q}" \
-			>> mk/build.mk
+		${PKGSRC_SETENV} ${CONFIGURE_ENV} ${SH} ./configure ${CONFIGURE_ARGS.boot} && \
+		${CP} -f ${FILESDIR:Q}/bootstrap.build.mk mk/build.mk
 	${TOUCH} ${.TARGET}
 
 ${WRKDIR}/stamp-build-boot: ${WRKDIR}/stamp-configure-boot
 	@${PHASE_MSG} "Building bootstrapping compiler ${PKGNAME_NOREV}"
-	${RUN} cd ${WRKDIR:Q}/build-boot && ${BUILD_MAKE_CMD}
+	${RUN}cd ${WRKDIR:Q}/build-boot && ${BUILD_MAKE_CMD}
 	${TOUCH} ${.TARGET}
 
-${WRKDIR}/${BOOT_TARBALL}: ${WRKDIR}/stamp-build-boot
+${WRKDIR}/stamp-dist-boot: ${WRKDIR}/stamp-build-boot
 	@${PHASE_MSG} "Creating binary distribution of bootstrapping ${PKGNAME_NOREV}"
-	${RUN} cd ${WRKDIR:Q}/build-boot && ${BUILD_MAKE_CMD} binary-dist
-	${MV} -f ${WRKDIR:Q}/build-boot/${BOOT_TARBALL} ${.TARGET}
-
-# This can take up half an hour. Memory usage is also very high, about 680 MiB.
-${WRKDIR}/${BOOT_ARCHIVE}: ${WRKDIR}/${BOOT_TARBALL}
-	@${PHASE_MSG} "Compressing binary distribution of bootstrapping ${PKGNAME_NOREV}"
-	${XZ} --verbose -9 --extreme ${WRKDIR:Q}/${BOOT_TARBALL}
+	${RUN}cd ${WRKDIR:Q}/build-boot && ${BUILD_MAKE_CMD} binary-dist
+	${MV} -f ${WRKDIR:Q}/build-boot/${BOOT_ARCHIVE.new} ${WRKDIR:Q}/${BOOT_ARCHIVE.new}
 
 .PHONY: post-bootstrap
 post-bootstrap:
 	@${ECHO} "=========================================================================="
-	@${ECHO} "Done creating ${BOOT_ARCHIVE}"
+	@${ECHO} "Done creating ${BOOT_ARCHIVE.new}"
 	@${ECHO} "  in ${WRKDIR}"
 	@${ECHO}
 	@${ECHO} "Now you can copy it into ${DISTDIR}/${DIST_SUBDIR} to use it as your"
Index: buildlink3.mk
===================================================================
RCS file: /cvsroot/pkgsrc/lang/ghc7/buildlink3.mk,v
retrieving revision 1.8
diff -u -r1.8 buildlink3.mk
--- buildlink3.mk	18 Aug 2015 07:31:01 -0000	1.8
+++ buildlink3.mk	28 Dec 2019 17:32:49 -0000
@@ -5,8 +5,8 @@
 .if !defined(GHC_BUILDLINK3_MK)
 GHC_BUILDLINK3_MK:=
 
-BUILDLINK_API_DEPENDS.ghc+=	ghc>=7.6.3
-BUILDLINK_ABI_DEPENDS.ghc+=	ghc>=7.6.3nb8
+BUILDLINK_API_DEPENDS.ghc+=	ghc>=7.10.3
+BUILDLINK_ABI_DEPENDS.ghc+=	ghc>=7.10.3
 BUILDLINK_PKGSRCDIR.ghc?=	../../lang/ghc7
 
 # On FreeBSD we need pkgsrc libiconv. See bootstrap.mk for details.
@@ -16,6 +16,7 @@
 .endif
 
 .include "../../converters/libiconv/buildlink3.mk"
+.include "../../devel/libffi/buildlink3.mk"
 .include "../../devel/gmp/buildlink3.mk"
 .include "../../mk/curses.buildlink3.mk"
 .endif	# GHC_BUILDLINK3_MK
Index: distinfo
===================================================================
RCS file: /cvsroot/pkgsrc/lang/ghc7/distinfo,v
retrieving revision 1.16
diff -u -r1.16 distinfo
--- distinfo	2 May 2019 08:21:49 -0000	1.16
+++ distinfo	28 Dec 2019 17:32:50 -0000
@@ -1,35 +1,35 @@
 $NetBSD: distinfo,v 1.16 2019/05/02 08:21:49 wiz Exp $
 
+SHA1 (ghc-7.10.3-boot-x86_64-unknown-netbsd.tar.xz) = 2e054dea1d6ad9871774b157939d73df22a82b75
+RMD160 (ghc-7.10.3-boot-x86_64-unknown-netbsd.tar.xz) = ca78f280a02302ac5056e503a01d79bd5e5c1e81
+SHA512 (ghc-7.10.3-boot-x86_64-unknown-netbsd.tar.xz) = fc00c383062f1506f437f9282ee81a076baad3d569266e1e626cc0f6f7e512f6169f0e60b402cc4a176cfa770c29a132ce1f8cf0aefb1c989824541255fb7643
+Size (ghc-7.10.3-boot-x86_64-unknown-netbsd.tar.xz) = 38203656 bytes
+SHA1 (ghc-7.10.3-src.tar.xz) = 471a3df55c7f5ac6be75109d0c29de97842b98e9
+RMD160 (ghc-7.10.3-src.tar.xz) = 993a69f761e608fa2424d72a48509ff6247a2ed9
+SHA512 (ghc-7.10.3-src.tar.xz) = a39700ec6cb3396639c8d5349590d56d685777adabdec8ff6877dbce9f5f66daaab27fce205fdf3cceb6219b0a901b7cbe25b6fa228f765c725423b3c36e52b1
+Size (ghc-7.10.3-src.tar.xz) = 11731468 bytes
 SHA1 (ghc-7.6.3-boot-i386-unknown-freebsd.tar.xz) = aea6224f30aa52d9998f2c77f473902179f03b8c
 RMD160 (ghc-7.6.3-boot-i386-unknown-freebsd.tar.xz) = 39a588cac4a0411db45ef269fbe6a63c6cb428ee
 SHA512 (ghc-7.6.3-boot-i386-unknown-freebsd.tar.xz) = 7b83ef8d1bdd9cd311e5791abc40f68528cbf0ee32dd2bc762a86439d8b722b9d45a8a01f1e557f71ed854d53eff4c405f07e05ba98aa1bbb4f36d4f7d860fb1
 Size (ghc-7.6.3-boot-i386-unknown-freebsd.tar.xz) = 28097800 bytes
+SHA1 (ghc-7.6.3-boot-i386-unknown-solaris2.tar.xz) = 80eb45ed3bcf1ff7a81662ff8c1c209df4fd350a
+RMD160 (ghc-7.6.3-boot-i386-unknown-solaris2.tar.xz) = 3e936bed64c44c172b76728796bcafd318921fc8
+SHA512 (ghc-7.6.3-boot-i386-unknown-solaris2.tar.xz) = 75df37e649f7d1467fffee1c7d74281dd91d56934537621d4e9f00e6447a45f0f87e91b5e136b1581a9346149e29122fb0a0780ed0b1ddce091c4de44636ba59
+Size (ghc-7.6.3-boot-i386-unknown-solaris2.tar.xz) = 29895032 bytes
 SHA1 (ghc-7.6.3-boot-powerpc-apple-darwin.tar.xz) = 420be0242c6a57af58e1d2ff7e1997616777cdbb
 RMD160 (ghc-7.6.3-boot-powerpc-apple-darwin.tar.xz) = 7d4ab57dc6054cbd67b07e64b2142fded3121f09
 SHA512 (ghc-7.6.3-boot-powerpc-apple-darwin.tar.xz) = 5cb62b1571f197d85e6e0506c0fc4fa4d9d5f53405bfd0d8ba1df3bad857710ae818048aa6002df184139d73ab556e1226eb648394c7f9dbe170e540ea8a4cb6
 Size (ghc-7.6.3-boot-powerpc-apple-darwin.tar.xz) = 33660776 bytes
-SHA1 (ghc-7.6.3-boot-x86_64-unknown-netbsd.tar.xz) = 82378c9a172aef10d4cf277967dbf97a0fc2e190
-RMD160 (ghc-7.6.3-boot-x86_64-unknown-netbsd.tar.xz) = c502da9c64f2a58b1af7f98fb90c1110d6a5fff5
-SHA512 (ghc-7.6.3-boot-x86_64-unknown-netbsd.tar.xz) = ce5df38c05df31ef0e2ec7266d6de2a29c6b6dc662f344d07e871916fd6780205482b33e9ebb19408ba54f499e20cc63cd71d022c37ada80d059de56a9f9cc4b
-Size (ghc-7.6.3-boot-x86_64-unknown-netbsd.tar.xz) = 28768864 bytes
-SHA1 (ghc-7.6.3-src.tar.bz2) = 8938e1ef08b37a4caa071fa169e79a3001d065ff
-RMD160 (ghc-7.6.3-src.tar.bz2) = 82a673ed38b7cf9a59afeb01057625fc761a822b
-SHA512 (ghc-7.6.3-src.tar.bz2) = ac86f18b4feeb0bdc9e867261600b210caf62740d73ae657259bbe8149b8c2c4f5a73d09d74d944d4e50f85cc87503485365f0a0ae65befe8d2b6844e5e1253a
-Size (ghc-7.6.3-src.tar.bz2) = 110763823 bytes
-SHA1 (patch-Makefile) = a6692a4a90b8003a8719c51d82d15f5af0ba1907
-SHA1 (patch-ghc.mk) = c4210aaa3e2b4a319b0b70da375ac89fddde5cb7
-SHA1 (patch-libffi_ghc.mk) = 68f3c9c25b93fc3debac75ae8e37535f11a44731
+SHA1 (ghc-7.6.3-boot-x86_64-unknown-solaris2.tar.xz) = 359b41cedf3b6194b7c0ca2241b37ea8db289cf6
+RMD160 (ghc-7.6.3-boot-x86_64-unknown-solaris2.tar.xz) = 5f26dd0beb7c884c445790aa47e7b62a30c52de7
+SHA512 (ghc-7.6.3-boot-x86_64-unknown-solaris2.tar.xz) = 8c4646942827cd38e15b9767967b687246d130dff2085a72ff4c193a58eb9fc15270dfd56c7f3368d3ca61c7c366bb6f701d01a60881d518d8649a39b43c08d9
+Size (ghc-7.6.3-boot-x86_64-unknown-solaris2.tar.xz) = 30357832 bytes
+SHA1 (patch-ghc.mk) = 542e3c8a2cd61eeeee6588ff62203c9c1074025d
+SHA1 (patch-libraries_base_GHC_Event_KQueue.hsc) = 8ee5da667a241a05fde3c580d3dc9bdc05aa5f00
+SHA1 (patch-libraries_base_System_Environment.hs) = fd786a7aa2058b5d86d4646e3816fb53ea0bf59f
 SHA1 (patch-libraries_base_configure.ac) = dd6132c5335d7e0421ec2181ebb5a34bb162e255
-SHA1 (patch-libraries_integer-gmp_configure.ac) = bc5ce3a6c39d681c413eb08b66e7287e39406fe0
-SHA1 (patch-libraries_integer-simple_GHC_Integer.hs) = f079285bc489c194959b9bee2aa5c977ec77ae1e
-SHA1 (patch-libraries_integer-simple_GHC_Integer_Type.hs) = b3140e169726f78f6d3b4edcd4cc119b6f767bfa
-SHA1 (patch-libraries_time_Data_Time_Clock_CTimeval.hs) = acc2a2255f53fbe55d91004f9d843ae249dad206
-SHA1 (patch-libraries_unix_System_Posix_Files.hsc) = f2e0892f9ebb9d82ddaf71b014d9af33967848dc
-SHA1 (patch-libraries_unix_System_Posix_Signals.hsc) = 3fbb8cff53b342dd69efa186ad8b86718a101a79
-SHA1 (patch-libraries_unix_cbits_execvpe.c) = 7e1464f9db0839221252a5328c170248fe21e727
-SHA1 (patch-libraries_unix_include_execvpe.h) = 4c48b72f74d360e925528ecce95baa8a2ae923d7
-SHA1 (patch-mk_config.mk.in) = 90a156f6c455d4b2c5d10fdf65b3a170dcfc4892
-SHA1 (patch-rts_Linker.c) = 39d1ca7a856a3ec25e493e97832ef255562c0719
-SHA1 (patch-rts_PosixSource.h) = 417481d506929be8b27bb106eefc5df2901ebe95
-SHA1 (patch-rts_StgCRun.c) = 5d4010dc250af25db0b5b2717c510752f4813e73
-SHA1 (patch-rts_ghc.mk) = 6a43e6e2a58793ba4ff309012c3e24114ccde1e2
+SHA1 (patch-libraries_time_lib_Data_Time_Clock_CTimeval.hs) = 79f17fe77cc5469a90c811682a937c8d711d59c5
+SHA1 (patch-libraries_unix_System_Posix_Files_Common.hsc) = a80945863d7bd8f5f65af5371d3ab090071ea24e
+SHA1 (patch-libraries_unix_System_Posix_Signals.hsc) = 6a2b9a527730ec593b70e827fdc1aaeccc575dad
+SHA1 (patch-libraries_unix_include_execvpe.h) = a134be89b4bdd49eb5c5ed45756eb3a4ce5951a5
+SHA1 (patch-rts_PosixSource.h) = 604608791f33245d9305dcbd6d9d5979fe162f21
Index: files/bootstrap.build.mk
===================================================================
RCS file: /cvsroot/pkgsrc/lang/ghc7/files/bootstrap.build.mk,v
retrieving revision 1.4
diff -u -r1.4 bootstrap.build.mk
--- files/bootstrap.build.mk	3 Feb 2015 02:32:05 -0000	1.4
+++ files/bootstrap.build.mk	28 Dec 2019 17:32:50 -0000
@@ -29,3 +29,13 @@
 
 # We'd like to distinguish bootstrapping bindists from normal ones.
 BIN_DIST_NAME      = ghc-$(ProjectVersion)-boot
+
+# Don't build or use dynamic Haskell libraries.
+DYNAMIC_GHC_PROGRAMS = NO
+
+# We want our bootkits to be as small as possible, even though `xz
+# -9e' is very slow and consumes about 680 MiB of memory.
+TAR_COMP           = xz
+TAR_COMP_CMD       = $(XZ_CMD)
+TAR_COMP_EXT       = xz
+XZ_CMD             = xz --verbose -9 --extreme
Index: patches/patch-Makefile
===================================================================
RCS file: patches/patch-Makefile
diff -N patches/patch-Makefile
--- patches/patch-Makefile	12 Dec 2013 12:47:17 -0000	1.1
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,16 +0,0 @@
-$NetBSD: patch-Makefile,v 1.1 2013/12/12 12:47:17 obache Exp $
-
-Required by patches/patch-ghc.mk
-
-
---- Makefile.orig	2013-02-14 02:53:07.000000000 +0000
-+++ Makefile
-@@ -75,7 +75,7 @@ binary-dist: binary-dist-prep
- ifeq "$(mingw32_TARGET_OS)" "1"
- 	mv bindistprep/*.exe .
- endif
--	mv bindistprep/*.tar.bz2 .
-+	mv bindistprep/*.tar .
- 
- binary-dist-prep:
- ifeq "$(mingw32_TARGET_OS)" "1"
Index: patches/patch-ghc.mk
===================================================================
RCS file: /cvsroot/pkgsrc/lang/ghc7/patches/patch-ghc.mk,v
retrieving revision 1.1
diff -u -r1.1 patch-ghc.mk
--- patches/patch-ghc.mk	12 Dec 2013 12:47:17 -0000	1.1
+++ patches/patch-ghc.mk	28 Dec 2019 17:32:50 -0000
@@ -1,23 +1,14 @@
-$NetBSD: patch-ghc.mk,v 1.1 2013/12/12 12:47:17 obache Exp $
+$NetBSD$
 
-We want bootstrapping bindists to be as small as possible, and bzip2
-is not enough:
+Fix building bootkits: we don't generate documentation for them.
 
-  % du -sh ghc-*.tar*
-  291M    ghc-7.6.2-boot-powerpc-apple-darwin.tar
-   60M    ghc-7.6.2-boot-powerpc-apple-darwin.tar.bz2
-   32M    ghc-7.6.2-boot-powerpc-apple-darwin.tar.xz
-
-
---- ghc.mk.orig	2013-02-14 02:24:35.000000000 +0000
+--- ghc.mk.orig	2019-12-27 02:36:02.858039422 +0000
 +++ ghc.mk
-@@ -1009,7 +1009,8 @@ unix-binary-dist-prep:
- 	$(call removeFiles,$(BIN_DIST_PREP_TAR))
- # h means "follow symlinks", e.g. if aclocal.m4 is a symlink to a source
- # tree then we want to include the real file, not a symlink to it
--	cd bindistprep && "$(TAR_CMD)" hcf - -T ../$(BIN_DIST_LIST) | bzip2 -c > ../$(BIN_DIST_PREP_TAR_BZ2)
-+	"$(MKDIRHIER)" compiler/stage2/doc # Workaround needed when building no docs.
-+	cd bindistprep && "$(TAR_CMD)" hcf ../$(BIN_DIST_PREP_TAR) -T ../$(BIN_DIST_LIST)
- 
- windows-binary-dist-prep:
- 	$(call removeTrees,bindistprep/)
+@@ -989,7 +989,6 @@ $(eval $(call bindist,.,\
+     $(INSTALL_LIBRARY_DOCS) \
+     $(addsuffix /*,$(INSTALL_HTML_DOC_DIRS)) \
+     docs/index.html \
+-    compiler/stage2/doc \
+     $(wildcard libraries/*/dist-install/doc/) \
+     $(wildcard libraries/*/*/dist-install/doc/) \
+     $(filter-out settings,$(INSTALL_LIBS)) \
Index: patches/patch-libffi_ghc.mk
===================================================================
RCS file: patches/patch-libffi_ghc.mk
diff -N patches/patch-libffi_ghc.mk
--- patches/patch-libffi_ghc.mk	7 May 2016 10:02:06 -0000	1.1
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,41 +0,0 @@
-$NetBSD: patch-libffi_ghc.mk,v 1.1 2016/05/07 10:02:06 joerg Exp $
-
---- libffi/ghc.mk.orig	2015-09-22 19:10:58.000000000 +0000
-+++ libffi/ghc.mk
-@@ -31,7 +31,7 @@ libffi_STAMP_INSTALL   = $(libffi_STAMP_
- libffi_EnableShared    = no
- endif
- 
--libffi_STATIC_LIB  = libffi/build/inst/lib/libffi.a
-+libffi_STATIC_LIB  = libffi/build/inst${ghclibdir}/libffi.a
- libffi_HEADERS     = rts/dist/build/ffi.h \
-                      rts/dist/build/ffitarget.h
- 
-@@ -85,8 +85,8 @@ $(libffi_STAMP_CONFIGURE): $(TOUCH_DEP)
-         CFLAGS="$(SRC_CC_OPTS) $(CONF_CC_OPTS_STAGE1) -w" \
-         LDFLAGS="$(SRC_LD_OPTS) $(CONF_GCC_LINKER_OPTS_STAGE1) -w" \
-         "$(SHELL)" configure \
--	          --prefix=$(TOP)/libffi/build/inst \
--	          --libdir=$(TOP)/libffi/build/inst/lib \
-+	          --prefix=${prefix} \
-+	          --libdir=${ghclibdir} \
- 	          --enable-static=yes \
- 	          --enable-shared=$(libffi_EnableShared) \
- 	          --host=$(TargetPlatformFull)
-@@ -103,14 +103,14 @@ $(libffi_STAMP_BUILD): $(libffi_STAMP_CO
- 	"$(TOUCH_CMD)" $@
- 
- $(libffi_STAMP_INSTALL): $(libffi_STAMP_BUILD) $(TOUCH_DEP)
--	$(MAKE) -C libffi/build MAKEFLAGS= install
-+	$(MAKE) -C libffi/build MAKEFLAGS= install DESTDIR=$(TOP)/libffi/build/inst
- 	"$(TOUCH_CMD)" $@
- 
- $(libffi_STATIC_LIB): $(libffi_STAMP_INSTALL)
- 	@test -f $@ || { echo "$< exists, but $@ does not."; echo "Suggest removing $<."; exit 1; }
- 
- $(libffi_HEADERS): $(libffi_STAMP_INSTALL) | $$(dir $$@)/.
--	cp -f libffi/build/inst/lib/libffi-*/include/$(notdir $@) $@
-+	cp -f libffi/build/inst/${ghclibdir}/libffi-*/include/$(notdir $@) $@
- 
- $(eval $(call clean-target,libffi,, \
-     libffi/build $(wildcard libffi/stamp.ffi.*) libffi/dist-install))
Index: patches/patch-libraries_base_GHC_Event_KQueue.hsc
===================================================================
RCS file: patches/patch-libraries_base_GHC_Event_KQueue.hsc
diff -N patches/patch-libraries_base_GHC_Event_KQueue.hsc
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ patches/patch-libraries_base_GHC_Event_KQueue.hsc	28 Dec 2019 17:32:50 -0000
@@ -0,0 +1,16 @@
+$NetBSD$
+
+Suppress linker warnings about compatibility syscall wrappers by using
+"capi" instead of "ccall".
+
+--- libraries/base/GHC/Event/KQueue.hsc.orig	2019-12-26 18:05:56.276488590 +0000
++++ libraries/base/GHC/Event/KQueue.hsc
+@@ -284,7 +284,7 @@ foreign import capi safe "sys/event.h ke
+     c_kevent :: KQueueFd -> Ptr Event -> CInt -> Ptr Event -> CInt
+              -> Ptr TimeSpec -> IO CInt
+ 
+-foreign import ccall unsafe "kevent"
++foreign import capi unsafe "sys/event.h kevent"
+     c_kevent_unsafe :: KQueueFd -> Ptr Event -> CInt -> Ptr Event -> CInt
+                     -> Ptr TimeSpec -> IO CInt
+ #else
Index: patches/patch-libraries_base_System_Environment.hs
===================================================================
RCS file: patches/patch-libraries_base_System_Environment.hs
diff -N patches/patch-libraries_base_System_Environment.hs
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ patches/patch-libraries_base_System_Environment.hs	28 Dec 2019 17:32:50 -0000
@@ -0,0 +1,23 @@
+$NetBSD$
+
+Suppress linker warnings about compatibility syscall wrappers by using
+"capi" instead of "ccall".
+
+--- libraries/base/System/Environment.hs.orig	2019-12-26 18:13:03.344291616 +0000
++++ libraries/base/System/Environment.hs
+@@ -1,5 +1,6 @@
+ {-# LANGUAGE Safe #-}
+ {-# LANGUAGE CPP #-}
++{-# LANGUAGE CApiFFI #-}
+ 
+ -----------------------------------------------------------------------------
+ -- |
+@@ -302,7 +303,7 @@ putEnv keyvalue = do
+   -- enviroment.
+   throwErrnoIf_ (/= 0) "putenv" (c_putenv s)
+ 
+-foreign import ccall unsafe "putenv" c_putenv :: CString -> IO CInt
++foreign import capi unsafe "stdlib.h putenv" c_putenv :: CString -> IO CInt
+ #endif
+ 
+ -- | @unSet name@ removes the specified environment variable from the
Index: patches/patch-libraries_integer-gmp_configure.ac
===================================================================
RCS file: patches/patch-libraries_integer-gmp_configure.ac
diff -N patches/patch-libraries_integer-gmp_configure.ac
--- patches/patch-libraries_integer-gmp_configure.ac	12 Dec 2013 12:47:17 -0000	1.1
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,42 +0,0 @@
-$NetBSD: patch-libraries_integer-gmp_configure.ac,v 1.1 2013/12/12 12:47:17 obache Exp $
-
-In Darwin, integer-gmp prefers GMP.framework when it happens to be
-installed somewhere in the system, even though it doesn't come with
-Darwin. Let it stop that. (Already fixed in the upstream.)
-
-
---- libraries/integer-gmp/configure.ac.orig	2013-01-27 13:36:41.000000000 +0000
-+++ libraries/integer-gmp/configure.ac
-@@ -45,18 +45,20 @@ dnl-------------------------------------
- dnl * Mac OS X only: check for GMP.framework
- dnl--------------------------------------------------------------------
- 
--case $target_os in
--  darwin*)
--    AC_MSG_CHECKING([for GMP.framework])
--    save_libs="$LIBS"
--    LIBS="-framework GMP"
--    AC_TRY_LINK_FUNC(__gmpz_fdiv_qr,
--      [HaveFrameworkGMP=YES; GMP_FRAMEWORK=GMP; GMP_LIBS=],
--      [HaveFrameworkGMP=NO])
--    LIBS="$save_libs"
--    AC_MSG_RESULT([$HaveFrameworkGMP])
--    ;;
--esac
-+if test "$HaveLibGmp" = "NO"; then
-+  case $target_os in
-+    darwin*)
-+      AC_MSG_CHECKING([for GMP.framework])
-+      save_libs="$LIBS"
-+      LIBS="-framework GMP"
-+      AC_TRY_LINK_FUNC(__gmpz_fdiv_qr,
-+        [HaveFrameworkGMP=YES; GMP_FRAMEWORK=GMP],
-+        [HaveFrameworkGMP=NO])
-+      LIBS="$save_libs"
-+      AC_MSG_RESULT([$HaveFrameworkGMP])
-+      ;;
-+  esac
-+fi
- 
- AC_CHECK_HEADER([gmp.h], , [HaveFrameworkGMP=NO; HaveLibGmp=NO; GMP_LIBS=])
- 
Index: patches/patch-libraries_integer-simple_GHC_Integer.hs
===================================================================
RCS file: patches/patch-libraries_integer-simple_GHC_Integer.hs
diff -N patches/patch-libraries_integer-simple_GHC_Integer.hs
--- patches/patch-libraries_integer-simple_GHC_Integer.hs	12 Dec 2013 12:47:17 -0000	1.1
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,15 +0,0 @@
-$NetBSD: patch-libraries_integer-simple_GHC_Integer.hs,v 1.1 2013/12/12 12:47:17 obache Exp $
-
-Missing functions: already fixed in the upstream.
-
-
---- libraries/integer-simple/GHC/Integer.hs.orig	2013-02-13 18:50:32.000000000 +0000
-+++ libraries/integer-simple/GHC/Integer.hs
-@@ -27,6 +27,7 @@ module GHC.Integer (
-     plusInteger, minusInteger, timesInteger, negateInteger,
-     eqInteger, neqInteger, absInteger, signumInteger,
-     leInteger, gtInteger, ltInteger, geInteger, compareInteger,
-+    divInteger, modInteger,
-     divModInteger, quotRemInteger, quotInteger, remInteger,
-     encodeFloatInteger, decodeFloatInteger, floatFromInteger,
-     encodeDoubleInteger, decodeDoubleInteger, doubleFromInteger,
Index: patches/patch-libraries_integer-simple_GHC_Integer_Type.hs
===================================================================
RCS file: patches/patch-libraries_integer-simple_GHC_Integer_Type.hs
diff -N patches/patch-libraries_integer-simple_GHC_Integer_Type.hs
--- patches/patch-libraries_integer-simple_GHC_Integer_Type.hs	12 Dec 2013 12:47:17 -0000	1.1
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,24 +0,0 @@
-$NetBSD: patch-libraries_integer-simple_GHC_Integer_Type.hs,v 1.1 2013/12/12 12:47:17 obache Exp $
-
-Missing functions: already fixed in the upstream.
-
-
---- libraries/integer-simple/GHC/Integer/Type.hs.orig	2013-02-13 18:45:55.000000000 +0000
-+++ libraries/integer-simple/GHC/Integer/Type.hs
-@@ -370,6 +370,16 @@ n `divModInteger` d =
-             then (# q `minusInteger` oneInteger, r `plusInteger` d #)
-             else (# q, r #)
- 
-+{-# NOINLINE divInteger #-}
-+divInteger :: Integer -> Integer -> Integer
-+n `divInteger` d = quotient
-+    where (# quotient, _ #) = n `divModInteger` d
-+
-+{-# NOINLINE modInteger #-}
-+modInteger :: Integer -> Integer -> Integer
-+n `modInteger` d = modulus
-+    where (# _, modulus #) = n `divModInteger` d
-+
- {-# NOINLINE quotRemInteger #-}
- quotRemInteger :: Integer -> Integer -> (# Integer, Integer #)
- Naught      `quotRemInteger` (!_)        = (# Naught, Naught #)
Index: patches/patch-libraries_time_Data_Time_Clock_CTimeval.hs
===================================================================
RCS file: patches/patch-libraries_time_Data_Time_Clock_CTimeval.hs
diff -N patches/patch-libraries_time_Data_Time_Clock_CTimeval.hs
--- patches/patch-libraries_time_Data_Time_Clock_CTimeval.hs	13 Feb 2015 19:28:40 -0000	1.1
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,33 +0,0 @@
-$NetBSD: patch-libraries_time_Data_Time_Clock_CTimeval.hs,v 1.1 2015/02/13 19:28:40 pho Exp $
-
-Suppress linker warnings about compatibility syscall wrappers by using
-"capi" instead of "ccall". In Haskell FFI, "ccall" is actually an
-interface to C ABI rather than C API. That is, GHC generates direct
-references to the symbol even if it's actually defined as a cpp macro
-or something like that, because GHC knows nothing about those macros
-in foreign headers. Hence the following warnings:
-
-  .../libHStime-1.4.0.1.a(CTimeval.o): In function `s1Kp_info':
-  (.text+0x2f): warning: warning: reference to compatibility
-  gettimeofday(); include <sys/time.h> to generate correct reference
-
-In other words, you can safely use "ccall" only when you are sure the
-symbol you want to import is actually a symbol in the ABI sense, which
-is not always the case for the POSIX API.
-
---- libraries/time/Data/Time/Clock/CTimeval.hs.orig	2015-02-13 15:42:45.000000000 +0000
-+++ libraries/time/Data/Time/Clock/CTimeval.hs
-@@ -1,3 +1,4 @@
-+{-# LANGUAGE CApiFFI #-}
- -- #hide
- module Data.Time.Clock.CTimeval where
- 
-@@ -20,7 +21,7 @@ instance Storable CTimeval where
- 		pokeElemOff (castPtr p) 0 s
- 		pokeElemOff (castPtr p) 1 mus
- 
--foreign import ccall unsafe "time.h gettimeofday" gettimeofday :: Ptr CTimeval -> Ptr () -> IO CInt
-+foreign import capi unsafe "sys/time.h gettimeofday" gettimeofday :: Ptr CTimeval -> Ptr () -> IO CInt
- 
- -- | Get the current POSIX time from the system clock.
- getCTimeval :: IO CTimeval
Index: patches/patch-libraries_time_lib_Data_Time_Clock_CTimeval.hs
===================================================================
RCS file: patches/patch-libraries_time_lib_Data_Time_Clock_CTimeval.hs
diff -N patches/patch-libraries_time_lib_Data_Time_Clock_CTimeval.hs
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ patches/patch-libraries_time_lib_Data_Time_Clock_CTimeval.hs	28 Dec 2019 17:32:50 -0000
@@ -0,0 +1,33 @@
+$NetBSD$
+
+Suppress linker warnings about compatibility syscall wrappers by using
+"capi" instead of "ccall". In Haskell FFI, "ccall" is actually an
+interface to C ABI rather than C API. That is, GHC generates direct
+references to the symbol even if it's actually defined as a cpp macro
+or something like that, because GHC knows nothing about those macros
+in foreign headers. Hence the following warnings:
+
+  .../libHStime-1.4.0.1.a(CTimeval.o): In function `s1Kp_info':
+  (.text+0x2f): warning: warning: reference to compatibility
+  gettimeofday(); include <sys/time.h> to generate correct reference
+
+In other words, you can safely use "ccall" only when you are sure the
+symbol you want to import is actually a symbol in the ABI sense, which
+is not always the case for the POSIX API.
+
+--- libraries/time/lib/Data/Time/Clock/CTimeval.hs.orig	2015-07-23 22:04:53.000000000 +0000
++++ libraries/time/lib/Data/Time/Clock/CTimeval.hs
+@@ -1,3 +1,4 @@
++{-# LANGUAGE CApiFFI #-}
+ -- #hide
+ module Data.Time.Clock.CTimeval where
+ 
+@@ -24,7 +25,7 @@ instance Storable CTimeval where
+ 		pokeElemOff (castPtr p) 0 s
+ 		pokeElemOff (castPtr p) 1 mus
+ 
+-foreign import ccall unsafe "time.h gettimeofday" gettimeofday :: Ptr CTimeval -> Ptr () -> IO CInt
++foreign import capi unsafe "sys/time.h gettimeofday" gettimeofday :: Ptr CTimeval -> Ptr () -> IO CInt
+ 
+ -- | Get the current POSIX time from the system clock.
+ getCTimeval :: IO CTimeval
Index: patches/patch-libraries_unix_System_Posix_Files.hsc
===================================================================
RCS file: patches/patch-libraries_unix_System_Posix_Files.hsc
diff -N patches/patch-libraries_unix_System_Posix_Files.hsc
--- patches/patch-libraries_unix_System_Posix_Files.hsc	21 May 2014 16:07:59 -0000	1.1
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,15 +0,0 @@
-$NetBSD: patch-libraries_unix_System_Posix_Files.hsc,v 1.1 2014/05/21 16:07:59 jperkin Exp $
-
-Add more errnos.
-
---- libraries/unix/System/Posix/Files.hsc.orig	2013-04-18 21:36:40.000000000 +0000
-+++ libraries/unix/System/Posix/Files.hsc
-@@ -171,7 +171,7 @@ access name flags =
-     if (r == 0)
- 	then return True
- 	else do err <- getErrno
--	        if (err == eACCES)
-+	        if (err == eACCES || err == eROFS || err == eTXTBSY)
- 		   then return False
- 		   else throwErrnoPath "fileAccess" name
- 
Index: patches/patch-libraries_unix_System_Posix_Files_Common.hsc
===================================================================
RCS file: patches/patch-libraries_unix_System_Posix_Files_Common.hsc
diff -N patches/patch-libraries_unix_System_Posix_Files_Common.hsc
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ patches/patch-libraries_unix_System_Posix_Files_Common.hsc	28 Dec 2019 17:32:50 -0000
@@ -0,0 +1,35 @@
+$NetBSD$
+
+Suppress linker warnings about compatibility syscall wrappers by using
+"capi" instead of "ccall".
+
+--- libraries/unix/System/Posix/Files/Common.hsc.orig	2019-12-26 18:14:23.311242161 +0000
++++ libraries/unix/System/Posix/Files/Common.hsc
+@@ -1,6 +1,7 @@
+ #ifdef __GLASGOW_HASKELL__
+ {-# LANGUAGE Trustworthy #-}
+ #endif
++{-# LANGUAGE CApiFFI #-}
+ -----------------------------------------------------------------------------
+ -- |
+ -- Module      :  System.Posix.Files.Common
+@@ -456,16 +457,16 @@ toCTimeVal t = CTimeVal sec (truncate $ 
+     (sec, frac) = if (frac' < 0) then (sec' - 1, frac' + 1) else (sec', frac')
+     (sec', frac') = properFraction $ toRational t
+ 
+-foreign import ccall unsafe "utimes"
++foreign import capi unsafe "sys/time.h utimes"
+     c_utimes :: CString -> Ptr CTimeVal -> IO CInt
+ 
+ #ifdef HAVE_LUTIMES
+-foreign import ccall unsafe "lutimes"
++foreign import capi unsafe "sys/time.h lutimes"
+     c_lutimes :: CString -> Ptr CTimeVal -> IO CInt
+ #endif
+ 
+ #if HAVE_FUTIMES
+-foreign import ccall unsafe "futimes"
++foreign import capi unsafe "sys/time.h futimes"
+     c_futimes :: CInt -> Ptr CTimeVal -> IO CInt
+ #endif
+ 
Index: patches/patch-libraries_unix_System_Posix_Signals.hsc
===================================================================
RCS file: /cvsroot/pkgsrc/lang/ghc7/patches/patch-libraries_unix_System_Posix_Signals.hsc,v
retrieving revision 1.1
diff -u -r1.1 patch-libraries_unix_System_Posix_Signals.hsc
--- patches/patch-libraries_unix_System_Posix_Signals.hsc	13 Feb 2015 19:28:40 -0000	1.1
+++ patches/patch-libraries_unix_System_Posix_Signals.hsc	28 Dec 2019 17:32:50 -0000
@@ -18,9 +18,9 @@
 symbol you want to import is actually a symbol in the ABI sense, which
 is not always the case for the POSIX API.
 
---- libraries/unix/System/Posix/Signals.hsc.orig	2015-02-13 15:40:27.000000000 +0000
+--- libraries/unix/System/Posix/Signals.hsc.orig	2015-07-23 22:04:56.000000000 +0000
 +++ libraries/unix/System/Posix/Signals.hsc
-@@ -598,7 +598,7 @@ awaitSignal maybe_sigset = do
+@@ -603,7 +603,7 @@ awaitSignal maybe_sigset = do
    -- XXX My manpage says it can also return EFAULT. And why is ignoring
    -- EINTR the right thing to do?
  
@@ -29,11 +29,10 @@
    c_sigsuspend :: Ptr CSigset -> IO CInt
  #endif
  
-@@ -622,6 +622,6 @@ foreign import capi unsafe "signal.h sig
+@@ -638,5 +638,5 @@ foreign import capi unsafe "signal.h sig
    c_sigismember :: Ptr CSigset -> CInt -> IO CInt
  #endif /* __HUGS__ */
  
 -foreign import ccall unsafe "sigpending"
 +foreign import capi unsafe "signal.h sigpending"
    c_sigpending :: Ptr CSigset -> IO CInt
- 
Index: patches/patch-libraries_unix_cbits_execvpe.c
===================================================================
RCS file: patches/patch-libraries_unix_cbits_execvpe.c
diff -N patches/patch-libraries_unix_cbits_execvpe.c
--- patches/patch-libraries_unix_cbits_execvpe.c	23 Oct 2015 20:46:22 -0000	1.1
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,29 +0,0 @@
-$NetBSD: patch-libraries_unix_cbits_execvpe.c,v 1.1 2015/10/23 20:46:22 tnn Exp $
-
-Don't conflict with builtin execvpe(3).
-
---- libraries/unix/cbits/execvpe.c.orig	2013-04-18 21:36:40.000000000 +0000
-+++ libraries/unix/cbits/execvpe.c
-@@ -57,8 +57,22 @@
-  * SUCH DAMAGE.
-  */
- 
-+#ifdef __NetBSD__
-+#  include <sys/param.h>
-+#  if __NetBSD_Version__ > 799000000
-+#    define HAVE_EXECVPE 1
-+#  endif
-+#elif defined(__GLIBC__)
-+#  define HAVE_EXECVPE 1
-+#endif
-+
-+#ifdef HAVE_EXECVPE
-+static int
-+unused_execvpe(char *name, char *const argv[], char **envp)
-+#else
- int
- execvpe(char *name, char *const argv[], char **envp)
-+#endif /* HAVE_EXECVPE */
- {
-     register int lp, ln;
-     register char *p;
Index: patches/patch-libraries_unix_include_execvpe.h
===================================================================
RCS file: /cvsroot/pkgsrc/lang/ghc7/patches/patch-libraries_unix_include_execvpe.h,v
retrieving revision 1.1
diff -u -r1.1 patch-libraries_unix_include_execvpe.h
--- patches/patch-libraries_unix_include_execvpe.h	23 Oct 2015 20:46:22 -0000	1.1
+++ patches/patch-libraries_unix_include_execvpe.h	28 Dec 2019 17:32:50 -0000
@@ -2,26 +2,14 @@
 
 Don't conflict with builtin execvpe(3).
 
---- libraries/unix/include/execvpe.h.orig	2013-04-18 21:36:40.000000000 +0000
+--- libraries/unix/include/execvpe.h.orig	2015-07-23 22:04:56.000000000 +0000
 +++ libraries/unix/include/execvpe.h
-@@ -19,7 +19,19 @@
+@@ -16,8 +16,6 @@ __hsunix_execvpe(const char *name, char 
+ #if HAVE_EXECVPE
+ # define _GNU_SOURCE
+ # include <unistd.h>
+-extern int
+-execvpe(const char *name, char *const argv[], char *const envp[]);
+ #else
+ # define execvpe(name,argv,envp) __hsunix_execvpe(name,argv,envp)
  #endif
- 
- #if !defined(_MSC_VER) && !defined(__MINGW32__) && !defined(_WIN32)
-+#ifdef __NetBSD__
-+#  include <sys/param.h>
-+#  if __NetBSD_Version__ > 799000000
-+#    define HAVE_EXECVPE 1
-+#  endif
-+#elif defined(__GLIBC__)
-+#  define HAVE_EXECVPE 1
-+#endif
-+
-+#ifdef HAVE_EXECVPE
-+#include <unistd.h>
-+#else
- extern int execvpe(char *name, char *const argv[], char **envp);
- extern void pPrPr_disableITimers (void);
-+#endif /* HAVE_EXECVPE */
- #endif
--
Index: patches/patch-mk_config.mk.in
===================================================================
RCS file: patches/patch-mk_config.mk.in
diff -N patches/patch-mk_config.mk.in
--- patches/patch-mk_config.mk.in	21 May 2014 16:07:59 -0000	1.1
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,14 +0,0 @@
-$NetBSD: patch-mk_config.mk.in,v 1.1 2014/05/21 16:07:59 jperkin Exp $
-
-Support shared libraries on 64-bit SunOS.
-
---- mk/config.mk.in.orig	2013-04-18 21:22:46.000000000 +0000
-+++ mk/config.mk.in
-@@ -124,6 +124,7 @@ SharedLibsPlatformList =
- 
- ifeq "$(SOLARIS_BROKEN_SHLD)" "NO"
- SharedLibsPlatformList += i386-unknown-solaris2
-+SharedLibsPlatformList += x86_64-unknown-solaris2
- endif
- 
- PlatformSupportsSharedLibs = $(if $(filter $(TARGETPLATFORM),\
Index: patches/patch-rts_Linker.c
===================================================================
RCS file: patches/patch-rts_Linker.c
diff -N patches/patch-rts_Linker.c
--- patches/patch-rts_Linker.c	21 May 2014 16:07:59 -0000	1.2
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,26 +0,0 @@
-$NetBSD: patch-rts_Linker.c,v 1.2 2014/05/21 16:07:59 jperkin Exp $
-
-Support 64-bit x86 SunOS.
-
---- rts/Linker.c.orig	2013-04-18 21:22:46.000000000 +0000
-+++ rts/Linker.c
-@@ -75,7 +75,8 @@
-     (   defined(linux_HOST_OS)     || defined(freebsd_HOST_OS) || \
-         defined(dragonfly_HOST_OS) || defined(netbsd_HOST_OS ) || \
-         defined(openbsd_HOST_OS  ) || defined(darwin_HOST_OS ) || \
--        defined(kfreebsdgnu_HOST_OS) || defined(gnu_HOST_OS)))
-+        defined(kfreebsdgnu_HOST_OS) || defined(gnu_HOST_OS) || \
-+        defined(solaris2_HOST_OS)))
- /* Don't use mmap on powerpc_HOST_ARCH as mmap doesn't support
-  * reallocating but we need to allocate jump islands just after each
-  * object images. Otherwise relative branches to jump islands can fail
-@@ -4014,6 +4015,9 @@ ocResolve_PEi386 ( ObjectCode* oc )
- #  define ELF_TARGET_386    /* Used inside <elf.h> */
- #elif defined(x86_64_HOST_ARCH)
- #  define ELF_TARGET_X64_64
-+#  if defined(solaris2_HOST_OS)
-+#    define ELF_TARGET_AMD64
-+#  endif
- #  define ELF_64BIT
- #endif
- 
Index: patches/patch-rts_PosixSource.h
===================================================================
RCS file: /cvsroot/pkgsrc/lang/ghc7/patches/patch-rts_PosixSource.h,v
retrieving revision 1.1
diff -u -r1.1 patch-rts_PosixSource.h
--- patches/patch-rts_PosixSource.h	25 May 2018 15:24:02 -0000	1.1
+++ patches/patch-rts_PosixSource.h	28 Dec 2019 17:32:50 -0000
@@ -1,6 +1,6 @@
 $NetBSD: patch-rts_PosixSource.h,v 1.1 2018/05/25 15:24:02 jperkin Exp $
 
-Set _XOPEN_SOURCE correctly on SunOS.
+Set _XOPEN_SOURCE correctly on SunOS. Fixed in later versions.
 
 --- rts/PosixSource.h.orig	2013-04-18 21:22:46.000000000 +0000
 +++ rts/PosixSource.h
Index: patches/patch-rts_StgCRun.c
===================================================================
RCS file: patches/patch-rts_StgCRun.c
diff -N patches/patch-rts_StgCRun.c
--- patches/patch-rts_StgCRun.c	5 Feb 2015 00:59:10 -0000	1.2
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,33 +0,0 @@
-$NetBSD: patch-rts_StgCRun.c,v 1.2 2015/02/05 00:59:10 pho Exp $
-
-We have to make the visiblity of StgRun and StgReturn to "hidden" not
-to trigger a bug in old binutils which results in:
-
-   ld: rts/dist/build/RtsStartup.dyn_o: relocation R_X86_64_PC32
-   against `StgRun' can not be used when making a shared object;
-   recompile with -fPIC
-
-With this workaround we can no longer override those two symbols using
-LD_PRELOAD, but I think there is no reason to do so anyway.
-
-This has already been fixed in the upstream:
-https://ghc.haskell.org/trac/ghc/ticket/7813
-
---- rts/StgCRun.c.orig	2013-01-27 13:21:52.000000000 +0000
-+++ rts/StgCRun.c
-@@ -246,6 +246,7 @@ StgRunIsImplementedInAssembler(void)
-          * save callee-saves registers on behalf of the STG code.
-          */
-         ".globl " STG_RUN "\n"
-+        ".hidden " STG_RUN "\n"
-         STG_RUN ":\n\t"
-         "subq %1, %%rsp\n\t"
-         "movq %%rsp, %%rax\n\t"
-@@ -280,6 +281,7 @@ StgRunIsImplementedInAssembler(void)
-         "jmp *%%rax\n\t"
- 
-         ".globl " STG_RETURN "\n"
-+        ".hidden " STG_RETURN "\n"
-          STG_RETURN ":\n\t"
- 
-         "movq %%rbx, %%rax\n\t"   /* Return value in R1  */
Index: patches/patch-rts_ghc.mk
===================================================================
RCS file: patches/patch-rts_ghc.mk
diff -N patches/patch-rts_ghc.mk
--- patches/patch-rts_ghc.mk	7 May 2016 10:02:06 -0000	1.6
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,58 +0,0 @@
-$NetBSD: patch-rts_ghc.mk,v 1.6 2016/05/07 10:02:06 joerg Exp $
-
-This is pkgsrc specific:
-
-Install libffi.{a,la} too, so that the plist framework can deal with
-.so name being different between platforms. Note that
-"libffi$(soext)*" matches to libffi.{so,so.6,so.6.0} but not to
-libffi.6.dylib so the pattern must be corrected to "libffi*$(soext)*",
-otherwise libtool-expand will emit the following error on Mach-O
-platforms:
-
-  libtool-expand: `lib/ghc-7.6.3/libffi.6.dylib' was not found
-
-For what it's worth, this ain't the right way to install libtool
-libraries. They should always be installed by running
-"libtool --mode=install install -c foo.la /path/to/destination", which
-can't be achieved without a major refactoring of the GHC build system.
-And for that matter, GHC shouldn't install a local copy of libffi in
-the first place. In fact GHC 7.8 seems to have a configure option
-"--with-system-libffi" so we can hopefully remove this rather
-unpleasant patch in the future.
-
---- rts/ghc.mk.orig	2013-04-18 21:22:47.000000000 +0000
-+++ rts/ghc.mk
-@@ -112,10 +112,11 @@ $(rts_ffi_objs_stamp): $(libffi_STATIC_L
- 
- # This is a little hacky. We don't know the SO version, so we only
- # depend on libffi.so, but copy libffi.so*
--rts/dist/build/libffi$(soext): libffi/build/inst/lib/libffi$(soext)
--	cp libffi/build/inst/lib/libffi$(soext)* rts/dist/build
-+rts/dist/build/libffi$(soext): libffi/build/inst${ghclibdir}/libffi$(soext)
-+	cp libffi/build/inst${ghclibdir}/libffi*$(soext)* rts/dist/build
-+	cp libffi/build/inst${ghclibdir}/libffi.*a rts/dist/build
- 
--rts/dist/build/$(LIBFFI_DLL): libffi/build/inst/bin/$(LIBFFI_DLL)
-+rts/dist/build/$(LIBFFI_DLL): libffi/build/inst${prefix}/bin/$(LIBFFI_DLL)
- 	cp $< $@
- endif
- 
-@@ -185,7 +186,7 @@ else
- $$(rts_$1_LIB) : $$(rts_$1_OBJS) $$(rts_$1_DTRACE_OBJS) rts/libs.depend rts/dist/build/libffi$$(soext)
- 	"$$(RM)" $$(RM_OPTS) $$@
- 	"$$(rts_dist_HC)" -package-name rts -shared -dynamic -dynload deploy \
--	  -no-auto-link-packages -Lrts/dist/build -lffi `cat rts/libs.depend` $$(rts_$1_OBJS) \
-+	  -no-auto-link-packages -Lrts/dist/build -optl -Wl,-rpath,${ghclibdir} -lffi `cat rts/libs.depend` $$(rts_$1_OBJS) \
- 	  $$(rts_$1_DTRACE_OBJS) -o $$@
- ifeq "$$(darwin_HOST_OS)" "1"
- 	# Ensure library's install name is correct before anyone links with it.
-@@ -509,7 +510,8 @@ endif
- # installing
- 
- INSTALL_LIBS += $(ALL_RTS_LIBS)
--INSTALL_LIBS += $(wildcard rts/dist/build/libffi$(soext)*)
-+INSTALL_LIBS += $(wildcard rts/dist/build/libffi*$(soext)*)
-+INSTALL_LIBS += $(wildcard rts/dist/build/libffi.*a)
- INSTALL_LIBS += $(wildcard rts/dist/build/$(LIBFFI_DLL))
- 
- install: install_libffi_headers
Index: haskell.mk
===================================================================
RCS file: /cvsroot/pkgsrc/mk/haskell.mk,v
retrieving revision 1.4
diff -u -r1.4 haskell.mk
--- haskell.mk	10 Apr 2016 15:58:02 -0000	1.4
+++ haskell.mk	27 Dec 2019 16:34:19 -0000
@@ -20,7 +20,7 @@
 #
 #   * PKGNAME will automatically be "hs-${DISTNAME}" unless you
 #     explicitly declare it.
-# 
+#
 #   * If your package is on the HackageDB, MASTER_SITES and HOMEPAGE
 #     can be omitted.
 #
@@ -124,7 +124,7 @@
 MASTER_SITES?=	${MASTER_SITE_HASKELL_HACKAGE:=${DISTNAME}/}
 
 # Default value of HOMEPAGE.
-HOMEPAGE?=	http://hackage.haskell.org/cgi-bin/hackage-scripts/package/${_DISTBASE}
+HOMEPAGE?=	http://hackage.haskell.org/package/${_DISTBASE}
 
 # Cabal packages may use pkg-config, but url2pkg can't detect
 # that. (PHO: I think that should be handled by url2pkg (2009-05-20))
@@ -152,15 +152,16 @@
 _HASKELL_PKG_BIN=	${_GHC_PKG_BIN} # Expose to the outer scope.
 
 # Determine GHC version.
-_GHC_VERSION_CMD=	${_GHC_BIN} -V | ${CUT} -d ' ' -f 8
-_GHC_VERSION=		${_GHC_VERSION_CMD:sh}
+.if exists(${_GHC_BIN})
+_GHC_VERSION!=		${_GHC_BIN} -V | ${CUT} -d ' ' -f 8
+.endif
 _GHC_VERSION_SUFFIX=	ghc${_GHC_VERSION}
 _GHC_VERSION_FULL=	ghc-${_GHC_VERSION}
 _HASKELL_VERSION_SUFFIX=	${_GHC_VERSION_SUFFIX}
 _HASKELL_VERSION=	${_GHC_VERSION_FULL} # Expose to the outer scope.
 
 # Determine GHC shlib suffix
-_GHC_SHLIB_SUFFIX.dylib=	dylib	
+_GHC_SHLIB_SUFFIX.dylib=	dylib
 _GHC_SHLIB_SUFFIX=		${_GHC_SHLIB_SUFFIX.${SHLIB_TYPE}:Uso}
 _HASKELL_SHLIB_SUFFIX=		${_GHC_SHLIB_SUFFIX}
 
@@ -169,15 +170,14 @@
 
 # Declarations for ../../mk/configure/configure.mk
 CONFIGURE_ARGS+=	--ghc
-CONFIGURE_ARGS+=	--with-compiler=${_GHC_BIN}
-CONFIGURE_ARGS+=	--with-hc-pkg=${_GHC_PKG_BIN}
-CONFIGURE_ARGS+=	--prefix=${PREFIX}
+CONFIGURE_ARGS+=	--with-compiler=${_GHC_BIN:Q}
+CONFIGURE_ARGS+=	--with-hc-pkg=${_GHC_PKG_BIN:Q}
+CONFIGURE_ARGS+=	--prefix=${PREFIX:Q}
 .endif # ${HASKELL_COMPILER}
 
 # Shared libraries
 .if ${HASKELL_ENABLE_SHARED_LIBRARY} == "yes"
 CONFIGURE_ARGS+=	--enable-shared --enable-executable-dynamic
-CONFIGURE_ARGS+=	"--ghc-option=-optl ${COMPILER_RPATH_FLAG}${PREFIX}/lib/${_GHC_VERSION_FULL}/${DISTNAME}"
 .endif
 
 # Library profiling
@@ -187,36 +187,31 @@
 
 
 # Haddock documentations
-PLIST_VARS+=		doc
 .if ${HASKELL_ENABLE_HADDOCK_DOCUMENTATION} == "yes"
-CONFIGURE_ARGS+=	--with-haddock=${BUILDLINK_PREFIX.ghc}/bin/haddock
-PLIST.doc=		yes
+CONFIGURE_ARGS+=	--with-haddock=${BUILDLINK_PREFIX.ghc:Q}/bin/haddock
 .endif
 
 # Optimization
 CONFIGURE_ARGS+=	-O2
 
-# package.conf and package.conf.old should be ignored at all.
-PRINT_PLIST_AWK+= \
-	/\/package\.conf(\.old)?$$/ { next; }
-
-# _HASKELL_VERSION should be substituted in PLIST.
-PLIST_SUBST+=	HASKELL_VERSION=${_HASKELL_VERSION}
-PLIST_SUBST+=	HASKELL_VERSION_SUFFIX=${_HASKELL_VERSION_SUFFIX}
-PRINT_PLIST_AWK+= \
-	($$0 ~ /-${_HASKELL_VERSION_SUFFIX}\.${_HASKELL_SHLIB_SUFFIX}$$/) { next; } \
-	($$0 ~ /lib\/.*_p\.a$$/) { next; } \
-	($$0 ~ /\.dyn_hi$$/) { next; } \
-	($$0 ~ /\.p_hi$$/) { next; } \
-	($$0 ~ /^share\/doc\/${DISTNAME}\/html\//) \
-	{ $$0 = "$${PLIST.doc}" $$0; } \
-	{ gsub(/${_HASKELL_VERSION_SUFFIX}/, "$${HASKELL_VERSION_SUFFIX}"); } \
-	{ gsub(/${_HASKELL_VERSION}/, "$${HASKELL_VERSION}"); }
-PLIST_AWK+=	-f ${PKGSRCDIR}/mk/plist/plist-haskell.awk
-PLIST_AWK_ENV+=	HASKELL_VERSION_SUFFIX=${_HASKELL_VERSION_SUFFIX}
-PLIST_AWK_ENV+=	HASKELL_SHLIB_SUFFIX=${_HASKELL_SHLIB_SUFFIX}
-PLIST_AWK_ENV+=	HASKELL_ENABLE_SHARED_LIBRARY=${HASKELL_ENABLE_SHARED_LIBRARY}
-PLIST_AWK_ENV+=	HASKELL_ENABLE_LIBRARY_PROFILING=${HASKELL_ENABLE_LIBRARY_PROFILING}
+# Starting from GHC 7.10 (or 7.8?), packages are installed in
+# directories with a hashed name so we can no longer predict the
+# contents of PLIST.
+GENERATE_PLIST+= \
+	cd ${DESTDIR:Q}${PREFIX:Q} && \
+		${FIND} * \( -type f -o -type l \) | ${SORT};
+# But since our packages may still have PLIST files, it is necessary
+# to ignore them until we get rid of them all. Or they all will be
+# broken.
+PLIST_SRC=		# none
+.if ${PKG_DEVELOPER:Uno:tl} != "no"
+.PHONY: _check-ignored-plist
+privileged-install-hook: _check-ignored-plist
+_check-ignored-plist: error-check
+	${RUN}if ${TEST} -f PLIST; then \
+		${DELAYED_WARNING_MSG} "[haskell.mk] The PLIST file is no longer used. Please remove it."; \
+	fi
+.endif
 
 # We might not have any working Haskell interpreter so compile
 # Setup.?hs to a binary.
@@ -224,33 +219,35 @@
 
 ${WRKSRC}/Setup:
 	${RUN} cd ${WRKSRC} && \
-		${_HASKELL_BIN} --make Setup
+		${_HASKELL_BIN:Q} --make Setup
 
 # Define configure target.
 do-configure:
-	${RUN} cd ${WRKSRC} && \
+	${RUN} cd ${WRKSRC:Q} && \
 		${SETENV} ${CONFIGURE_ENV} \
 			./Setup configure ${CONFIGURE_ARGS}
 
 # Define build target.
 do-build:
-	${RUN} cd ${WRKSRC} && \
+	${RUN} cd ${WRKSRC:Q} && \
 		./Setup build
 .if ${HASKELL_ENABLE_HADDOCK_DOCUMENTATION} == "yes"
-	${RUN} cd ${WRKSRC} && \
+	${RUN} cd ${WRKSRC:Q} && \
 		./Setup haddock
 .endif
 
 # Define install target. We need installed-pkg-config to be installed
 # for package registration (if any).
-_HASKELL_PKG_DESCR_FILE=	${PREFIX}/lib/${DISTNAME}/${_HASKELL_VERSION}/package-description
+_HASKELL_PKG_DESCR_DIR=		${PREFIX}/lib/${DISTNAME}/${_HASKELL_VERSION}
+_HASKELL_PKG_DESCR_FILE=	${_HASKELL_PKG_DESCR_DIR}/package-description
 
+INSTALLATION_DIRS+=		${_HASKELL_PKG_DESCR_DIR}
 do-install:
 	${RUN} cd ${WRKSRC} && \
 		./Setup register --gen-pkg-config=dist/package-description && \
-		./Setup copy --destdir=${DESTDIR} && \
+		./Setup copy --destdir=${DESTDIR:Q} && \
 		if [ -f dist/package-description ]; then \
-			${INSTALL_DATA} dist/package-description ${DESTDIR}${_HASKELL_PKG_DESCR_FILE}; \
+			${INSTALL_DATA} dist/package-description ${DESTDIR:Q}${_HASKELL_PKG_DESCR_FILE:Q}; \
 		fi \
 
 # Define test target.
@@ -266,5 +263,4 @@
 INSTALL_TEMPLATES+=	../../mk/haskell/INSTALL.in
 DEINSTALL_TEMPLATES+=	../../mk/haskell/DEINSTALL.in
 
-
 .endif # HASKELL_MK

Attachment: signature.asc
Description: OpenPGP digital signature



Home | Main Index | Thread Index | Old Index