mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 13:28:12 -05:00
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.
This commit is contained in:
parent
ca0635b4ba
commit
93cb98d481
1 changed files with 5 additions and 3 deletions
|
@ -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 @@ (define-public icu4c
|
|||
(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
|
||||
|
|
Loading…
Reference in a new issue