[Pkg-haskell-commits] r1222 - in /packages/haskell-devscripts/trunk: debian/changelog dh_haskell_configure
arjan at users.alioth.debian.org
arjan at users.alioth.debian.org
Thu May 1 12:26:26 UTC 2008
Author: arjan
Date: Thu May 1 12:26:26 2008
New Revision: 1222
URL: http://svn.debian.org/wsvn/pkg-haskell/?sc=1&rev=1222
Log:
r183 at reddwarf: arjan | 2008-05-01 14:22:15 +0200
* dh_haskell_configure:
- Pass all enable-* en disable-* arguments as options through to
./setup configure.
This can be used to disable optimization on certain architectures
(dh_haskell_configure disable-optimization) or to always build a
vanilla library (dh_haskell_configure enable-library-vanilla)
(Closes: #478700)
Modified:
packages/haskell-devscripts/trunk/debian/changelog
packages/haskell-devscripts/trunk/dh_haskell_configure
Modified: packages/haskell-devscripts/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-haskell/packages/haskell-devscripts/trunk/debian/changelog?rev=1222&op=diff
==============================================================================
--- packages/haskell-devscripts/trunk/debian/changelog (original)
+++ packages/haskell-devscripts/trunk/debian/changelog Thu May 1 12:26:26 2008
@@ -1,3 +1,15 @@
+haskell-devscripts (0.6.12~pre1) unstable; urgency=low
+
+ * dh_haskell_configure:
+ - Pass all enable-* en disable-* arguments as options through to
+ ./setup configure.
+ This can be used to disable optimization on certain architectures
+ (dh_haskell_configure disable-optimization) or to always build a
+ vanilla library (dh_haskell_configure enable-library-vanilla)
+ (Closes: #478700)
+
+ -- Arjan Oosting <arjan at debian.org> Thu, 01 May 2008 13:32:20 +0200
+
haskell-devscripts (0.6.11) unstable; urgency=low
* dh_haskell_depends:
Modified: packages/haskell-devscripts/trunk/dh_haskell_configure
URL: http://svn.debian.org/wsvn/pkg-haskell/packages/haskell-devscripts/trunk/dh_haskell_configure?rev=1222&op=diff
==============================================================================
--- packages/haskell-devscripts/trunk/dh_haskell_configure (original)
+++ packages/haskell-devscripts/trunk/dh_haskell_configure Thu May 1 12:26:26 2008
@@ -105,7 +105,7 @@
push @flags , "--$_";
} elsif (m/^.*-args=.*$/) {
push @flags , "--$_";
- } elsif (m/^(enable|disable)-split-objs$/){
+ } elsif (m/^(enable|disable)-.*$/){
push @flags , "--$_";
} else {
error("Unrecognized argument: $_\n");
More information about the Pkg-haskell-commits
mailing list