~ruther/guix-local

93cb98d481312844f313adc938417f4d6d85eff6 — Mark H Weaver 9 years ago ca0635b
gnu: icu4c: On MIPS, pass --with-data-packaging=archive to configure.

* gnu/packages/icu4c.scm (icu4c)[arguments]: On MIPS, pass
"--with-data-packaging=archive" to configure.
1 files changed, 5 insertions(+), 3 deletions(-)

M gnu/packages/icu4c.scm
M gnu/packages/icu4c.scm => gnu/packages/icu4c.scm +5 -3
@@ 1,6 1,6 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
;;; Copyright © 2015, 2016 Mark H Weaver <mhw@netris.org>
;;;
;;; This file is part of GNU Guix.
;;;


@@ 48,8 48,10 @@
   (arguments
    `(#:configure-flags
      '("--enable-rpath"
        ,@(if (string-prefix? "arm" (or (%current-target-system)
                                        (%current-system)))
        ,@(if (let ((s (or (%current-target-system)
                           (%current-system))))
                (or (string-prefix? "arm" s)
                    (string-prefix? "mips" s)))
              '("--with-data-packaging=archive")
              '()))
      #:phases