summaryrefslogtreecommitdiff
path: root/Dh_Haskell.sh
diff options
context:
space:
mode:
authorJoachim Breitner <mail@joachim-breitner.de>2010-02-17 12:52:21 +0000
committerJoachim Breitner <mail@joachim-breitner.de>2010-02-17 12:52:21 +0000
commit0ec447c7e6a4bf6c1bf2349fb4b23c94624b3a37 (patch)
treeb5033d0b4dc5aada7e0c63802289984fe2d4f268 /Dh_Haskell.sh
parent86b71573c2bed3f6995e37033213623115b03096 (diff)
Allow for usage of dh_haskell_provides in ghc6
Diffstat (limited to 'Dh_Haskell.sh')
-rw-r--r--Dh_Haskell.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/Dh_Haskell.sh b/Dh_Haskell.sh
index 97809ac..804e2b3 100644
--- a/Dh_Haskell.sh
+++ b/Dh_Haskell.sh
@@ -183,6 +183,9 @@ find_config_for_ghc6(){
local pkg
pkg=$1
case "$pkg" in
+ ghc6-prof)
+ pkg=ghc6
+ ;;
libghc6-*-prof)
pkg=`echo $pkg | sed -e 's/-prof$/-dev/'`
;;
@@ -192,7 +195,7 @@ find_config_for_ghc6(){
for f in debian/$pkg/var/lib/ghc-*/package.conf.d/* ; do
if [ -f "$f" ] ; then
echo $f
- break
+ echo " "
fi
done
}