guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/02: gnu: icu4c: On MIPS, pass --with-data-packaging=archive to config


From: Mark H. Weaver
Subject: 02/02: gnu: icu4c: On MIPS, pass --with-data-packaging=archive to configure.
Date: Sun, 23 Oct 2016 18:21:13 +0000 (UTC)

mhw pushed a commit to branch core-updates
in repository guix.

commit 93cb98d481312844f313adc938417f4d6d85eff6
Author: Mark H Weaver <address@hidden>
Date:   Sun Oct 23 14:18:26 2016 -0400

    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.
---
 gnu/packages/icu4c.scm |    8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/icu4c.scm b/gnu/packages/icu4c.scm
index fb33c76..13723bf 100644
--- a/gnu/packages/icu4c.scm
+++ b/gnu/packages/icu4c.scm
@@ -1,6 +1,6 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2013 Andreas Enge <address@hidden>
-;;; Copyright © 2015 Mark H Weaver <address@hidden>
+;;; Copyright © 2015, 2016 Mark H Weaver <address@hidden>
 ;;;
 ;;; 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]