summaryrefslogtreecommitdiff
path: root/p/haskell-aeson
diff options
context:
space:
mode:
authorJoachim Breitner <mail@joachim-breitner.de>2013-12-11 03:50:10 +0400
committerJoachim Breitner <mail@joachim-breitner.de>2013-12-11 03:50:10 +0400
commit2d43042b971cb5bdc5bd38733962ceb4ec794fd1 (patch)
tree36fe2e743154c006bfa13e7315f32708153a0c60 /p/haskell-aeson
parent982d6ec953c124a676dc05b906efae05294c4c17 (diff)
downloadDHG_packages-2d43042b971cb5bdc5bd38733962ceb4ec794fd1.tar.gz
haskell-aeson: Fix path to test whether -threaded is supported by GHC
Diffstat (limited to 'p/haskell-aeson')
-rw-r--r--p/haskell-aeson/debian/changelog6
-rwxr-xr-xp/haskell-aeson/debian/rules2
2 files changed, 7 insertions, 1 deletions
diff --git a/p/haskell-aeson/debian/changelog b/p/haskell-aeson/debian/changelog
index d67f9c737..4c7788921 100644
--- a/p/haskell-aeson/debian/changelog
+++ b/p/haskell-aeson/debian/changelog
@@ -1,3 +1,9 @@
+haskell-aeson (0.6.2.1-2) UNRELEASED; urgency=medium
+
+ * Fix path to test whether -threaded is supported by GHC
+
+ -- Joachim Breitner <nomeata@debian.org> Tue, 10 Dec 2013 23:49:56 +0000
+
haskell-aeson (0.6.2.1-1) unstable; urgency=low
[ Joachim Breitner ]
diff --git a/p/haskell-aeson/debian/rules b/p/haskell-aeson/debian/rules
index a45d0cbd3..8a78032da 100755
--- a/p/haskell-aeson/debian/rules
+++ b/p/haskell-aeson/debian/rules
@@ -1,7 +1,7 @@
#!/usr/bin/make -f
DEB_SETUP_GHC_CONFIGURE_ARGS := $(shell test -e /usr/lib/ghc/bin/ghci || echo --flags=-th)
-DEB_SETUP_GHC_CONFIGURE_ARGS += $(shell test -e /usr/lib/ghc-$(GHC_VERSION)/libHSrts_thr.a || echo --flags=-threaded)
+DEB_SETUP_GHC_CONFIGURE_ARGS += $(shell test -e /usr/lib/ghc/libHSrts_thr.a || echo --flags=-threaded)
DEB_ENABLE_TESTS = $(shell test -e /usr/lib/ghc/bin/ghci && echo yes)
include /usr/share/cdbs/1/rules/debhelper.mk