From 05d37d25841d22e92c7fae3dcdcb5734081dfe3d Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Sat, 12 Sep 2009 14:40:46 +0000 Subject: [PATCH] Fix the location of the package database in the installed ghc-pkg It was using the old filename, rather than the new directory name. --- utils/ghc-pkg/ghc-pkg.wrapper | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/ghc-pkg/ghc-pkg.wrapper b/utils/ghc-pkg/ghc-pkg.wrapper index 6d3c2af..d21fd59 100644 --- a/utils/ghc-pkg/ghc-pkg.wrapper +++ b/utils/ghc-pkg/ghc-pkg.wrapper @@ -1,5 +1,5 @@ #!/bin/sh -PKGCONF=$topdir/package.conf +PKGCONF=$topdir/package.conf.d exec $executablename --global-conf $PKGCONF ${1+"$@"} -- 1.7.10.4