summaryrefslogtreecommitdiff
path: root/p/haskell-src-exts/debian
diff options
context:
space:
mode:
authorClint Adams <clint@debian.org>2016-10-27 18:25:15 -0400
committerClint Adams <clint@debian.org>2016-10-27 18:25:15 -0400
commitb2f978b92fc5c186314db3384e3b7f14ffbf99fc (patch)
tree714cb979df24ed52c0ca76b6044301389f7a0742 /p/haskell-src-exts/debian
parentee9cbad7c2c6a2164cb33edf4ac257a7d597d8c6 (diff)
downloadDHG_packages-b2f978b92fc5c186314db3384e3b7f14ffbf99fc.tar.gz
src-exts: after nearly 11 days in the mips64el buildd queue, give up
Diffstat (limited to 'p/haskell-src-exts/debian')
-rw-r--r--p/haskell-src-exts/debian/changelog3
-rwxr-xr-xp/haskell-src-exts/debian/rules8
2 files changed, 6 insertions, 5 deletions
diff --git a/p/haskell-src-exts/debian/changelog b/p/haskell-src-exts/debian/changelog
index d87850f5c..64c8172d3 100644
--- a/p/haskell-src-exts/debian/changelog
+++ b/p/haskell-src-exts/debian/changelog
@@ -1,6 +1,7 @@
haskell-src-exts (1.17.1-4) UNRELEASED; urgency=medium
- * Re-enable low-memory hack for mips/mipsel.
+ * Re-enable low-memory hack for mips/mipsel and GOT hack for
+ mips64el.
-- Clint Adams <clint@debian.org> Sat, 22 Oct 2016 22:21:17 -0400
diff --git a/p/haskell-src-exts/debian/rules b/p/haskell-src-exts/debian/rules
index 73cd4b189..5078bba2e 100755
--- a/p/haskell-src-exts/debian/rules
+++ b/p/haskell-src-exts/debian/rules
@@ -21,10 +21,10 @@ DEB_BUILD_ARCH ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH)
ifneq (,$(filter $(DEB_BUILD_ARCH),mips mipsel))
DEB_SETUP_GHC_CONFIGURE_ARGS += --ghc-options="-optc--param -optcggc-min-expand=10"
endif
-#
-#ifneq (,$(filter $(DEB_BUILD_ARCH),mips64el))
-# DEB_SETUP_GHC_CONFIGURE_ARGS += --ghc-options="-optc-mxgot"
-#endif
+
+ifneq (,$(filter $(DEB_BUILD_ARCH),mips64el))
+ DEB_SETUP_GHC_CONFIGURE_ARGS += --ghc-options="-optc-mxgot"
+endif
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/hlibrary.mk