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,6 +1,6 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
|
;;; 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.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -48,8 +48,10 @@
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags
|
`(#:configure-flags
|
||||||
'("--enable-rpath"
|
'("--enable-rpath"
|
||||||
,@(if (string-prefix? "arm" (or (%current-target-system)
|
,@(if (let ((s (or (%current-target-system)
|
||||||
(%current-system)))
|
(%current-system))))
|
||||||
|
(or (string-prefix? "arm" s)
|
||||||
|
(string-prefix? "mips" s)))
|
||||||
'("--with-data-packaging=archive")
|
'("--with-data-packaging=archive")
|
||||||
'()))
|
'()))
|
||||||
#:phases
|
#:phases
|
||||||
|
|
Loading…
Reference in New Issue