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.
master
Mark H Weaver 2016-10-23 14:18:26 -04:00
parent ca0635b4ba
commit 93cb98d481
No known key found for this signature in database
GPG Key ID: 7CEF29847562C516
1 changed files with 5 additions and 3 deletions

View File

@ -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