summaryrefslogtreecommitdiff
path: root/p/haskell-hsh
diff options
context:
space:
mode:
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)