summaryrefslogtreecommitdiff
path: root/p/haskell-hsh
diff options
context:
space:
mode:
authorJoachim Breitner <nomeata@debian.org>2011-06-05 00:31:47 +0400
committerJoachim Breitner <nomeata@debian.org>2011-06-05 00:31:47 +0400
commitbc48624455846b29e27b4a8b6a9aad49e41b5844 (patch)
tree088a16a37f0f8aaa0fa2fdea10cf434d4de35619 /p/haskell-hsh
parent93672a1161c8dd0fc29e8662177a901c390cf58b (diff)
downloadDHG_packages-bc48624455846b29e27b4a8b6a9aad49e41b5844.tar.gz
haskell-hsh: Fix detection of threaded runtime (include hlibrary.mk first!)
Diffstat (limited to 'p/haskell-hsh')
-rw-r--r--p/haskell-hsh/debian/changelog6
-rwxr-xr-xp/haskell-hsh/debian/rules5
2 files changed, 8 insertions, 3 deletions
diff --git a/p/haskell-hsh/debian/changelog b/p/haskell-hsh/debian/changelog
index 8506f96ea..a67e6b83d 100644
--- a/p/haskell-hsh/debian/changelog
+++ b/p/haskell-hsh/debian/changelog
@@ -1,3 +1,9 @@
+haskell-hsh (2.0.3-5) UNRELEASED; urgency=low
+
+ * Fix detection of threaded runtime (include hlibrary.mk first!)
+
+ -- Joachim Breitner <nomeata@debian.org> Sat, 04 Jun 2011 22:31:25 +0200
+
haskell-hsh (2.0.3-4) unstable; urgency=low
* [482498f] s/ghc6/ghc/
diff --git a/p/haskell-hsh/debian/rules b/p/haskell-hsh/debian/rules
index 44e0d20f7..e140465d2 100755
--- a/p/haskell-hsh/debian/rules
+++ b/p/haskell-hsh/debian/rules
@@ -1,9 +1,8 @@
#!/usr/bin/make -f
-# If no threaded RTS is found, disable it
-DEB_SETUP_GHC6_CONFIGURE_ARGS := $(shell test -e /usr/lib/ghc-$(GHC6_VERSION)/libHSrts_thr.a || echo --flags=-threaded)
-
# Standard way of building Haskell libraries .
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/hlibrary.mk
+# If no threaded RTS is found, disable it
+DEB_SETUP_GHC6_CONFIGURE_ARGS := $(shell test -e /usr/lib/ghc-$(GHC6_VERSION)/libHSrts_thr.a || echo --flags=-threaded)