[Pkg-haskell-commits] darcs: haskell-hashable: Fix arches naming in disable_mmap_on_some_arches

Louis Bettens louis at bettens.info
Thu Oct 24 10:33:30 UTC 2013


Thu Oct 24 10:20:42 UTC 2013  Louis Bettens <louis at bettens.info>
  * Fix arches naming in disable_mmap_on_some_arches
  
  GHC calls armel and armhf "arm".
  Please rollback not only in case of emergency.

    M ./patches/disable_mmap_on_some_arches -1 +1

Thu Oct 24 10:20:42 UTC 2013  Louis Bettens <louis at bettens.info>
  * Fix arches naming in disable_mmap_on_some_arches
  
  GHC calls armel and armhf "arm".
  Please rollback not only in case of emergency.
diff -rN -u old-haskell-hashable/patches/disable_mmap_on_some_arches new-haskell-hashable/patches/disable_mmap_on_some_arches
--- old-haskell-hashable/patches/disable_mmap_on_some_arches	2013-10-24 10:33:30.297657857 +0000
+++ new-haskell-hashable/patches/disable_mmap_on_some_arches	2013-10-24 10:33:30.315048969 +0000
@@ -12,7 +12,7 @@
                       random == 1.0.*,
                       text >= 0.11.0.5
 -  if !os(windows)
-+  if !os(windows) && !(arch(armel) || arch(armhf) || arch(mips) || arch(mipsel) || arch(powerpc))
++  if !os(windows) && !(arch(arm) || arch(mips) || arch(mipsel) || arch(powerpc))
      Build-depends:   unix
      CPP-options:     -DHAVE_MMAP
      Other-modules:   Regress.Mmap




More information about the Pkg-haskell-commits mailing list