summaryrefslogtreecommitdiff
path: root/p/ghc
diff options
context:
space:
mode:
authorJoachim Breitner <mail@joachim-breitner.de>2015-04-30 10:07:52 +0300
committerJoachim Breitner <mail@joachim-breitner.de>2015-04-30 10:07:52 +0300
commit43ab914baec3f1dc84c1c6e66a47efe36926b0ae (patch)
tree9843b794fda56c90b6d9b80f41b76799353f0071 /p/ghc
parentb2c4e6b4402f6366750bc3bb18e80e566993131d (diff)
downloadDHG_packages-43ab914baec3f1dc84c1c6e66a47efe36926b0ae.tar.gz
ghc: Fix debian/rules syntax (tab instead of spaces) to unbreak build on armel, armhf
Diffstat (limited to 'p/ghc')
-rw-r--r--p/ghc/debian/changelog7
-rwxr-xr-xp/ghc/debian/rules12
2 files changed, 13 insertions, 6 deletions
diff --git a/p/ghc/debian/changelog b/p/ghc/debian/changelog
index 73435c2de..8edbe07b7 100644
--- a/p/ghc/debian/changelog
+++ b/p/ghc/debian/changelog
@@ -1,3 +1,10 @@
+ghc (7.8.4-2) UNRELEASED; urgency=medium
+
+ * Fix debian/rules syntax (tab instead of spaces) to unbreak build on armel,
+ armhf
+
+ -- Joachim Breitner <nomeata@debian.org> Thu, 30 Apr 2015 09:06:53 +0200
+
ghc (7.8.4-1) unstable; urgency=medium
* Upload to unstable.
diff --git a/p/ghc/debian/rules b/p/ghc/debian/rules
index 911b358d8..96173d12e 100755
--- a/p/ghc/debian/rules
+++ b/p/ghc/debian/rules
@@ -209,12 +209,12 @@ ifeq (YES,$(BUILD_HADDOCK_DOCS))
endif
ifneq (,$(findstring $(DEB_HOST_ARCH), armel armhf))
- # Ensure that the same llvm used to build ghc is used at runtime.
- sed -i "s,exec ,PATH=\"$(LLVM_PATH):\$$PATH\"\nexport PATH\nexec ," \
- debian/tmp/usr/lib/ghc/bin/ghc-$(ProjectVersion) \
- debian/tmp/usr/lib/ghc/bin/ghc-pkg-$(ProjectVersion) \
- debian/tmp/usr/lib/ghc/bin/hsc2hs \
- debian/tmp/usr/lib/ghc/bin/haddock-ghc-$(ProjectVersion)
+ # Ensure that the same llvm used to build ghc is used at runtime.
+ sed -i "s,exec ,PATH=\"$(LLVM_PATH):\$$PATH\"\nexport PATH\nexec ," \
+ debian/tmp/usr/lib/ghc/bin/ghc-$(ProjectVersion) \
+ debian/tmp/usr/lib/ghc/bin/ghc-pkg-$(ProjectVersion) \
+ debian/tmp/usr/lib/ghc/bin/hsc2hs \
+ debian/tmp/usr/lib/ghc/bin/haddock-ghc-$(ProjectVersion)
endif