summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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