summaryrefslogtreecommitdiff
path: root/utils/ghc-pkg/ghc-pkg.wrapper
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2009-09-12 14:40:46 +0000
committerIan Lynagh <igloo@earth.li>2009-09-12 14:40:46 +0000
commit05d37d25841d22e92c7fae3dcdcb5734081dfe3d (patch)
treef86e89e48b2738f4c055457c94cd93bd3eaf14ef /utils/ghc-pkg/ghc-pkg.wrapper
parent852432e5f78275a565c3e155dce0949c1a7a5c40 (diff)
downloadhaskell-05d37d25841d22e92c7fae3dcdcb5734081dfe3d.tar.gz
Fix the location of the package database in the installed ghc-pkg
It was using the old filename, rather than the new directory name.
Diffstat (limited to 'utils/ghc-pkg/ghc-pkg.wrapper')
-rw-r--r--utils/ghc-pkg/ghc-pkg.wrapper2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/ghc-pkg/ghc-pkg.wrapper b/utils/ghc-pkg/ghc-pkg.wrapper
index 6d3c2af70e..d21fd59e2c 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+"$@"}