guix-commits
[Top][All Lists]
Advanced

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

05/08: gnu: boost: Fix target-system check.


From: Mark H. Weaver
Subject: 05/08: gnu: boost: Fix target-system check.
Date: Tue, 06 Jan 2015 18:42:47 +0000

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

commit 7cd802f342407c0d1cdef888a2e0d22f07690bb4
Author: Mark H Weaver <address@hidden>
Date:   Tue Jan 6 13:22:42 2015 -0500

    gnu: boost: Fix target-system check.
    
    * gnu/packages/boost.scm (boost): Fix target-system check.
---
 gnu/packages/boost.scm |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/boost.scm b/gnu/packages/boost.scm
index 3e8d2b8..1767681 100644
--- a/gnu/packages/boost.scm
+++ b/gnu/packages/boost.scm
@@ -1,6 +1,6 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2014 John Darrington <address@hidden>
-;;; Copyright © 2014 Mark H Weaver <address@hidden>
+;;; Copyright © 2014, 2015 Mark H Weaver <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -53,7 +53,7 @@
               ;; Boost's 'context' library is not yet supported on mips64, so
               ;; we disable it.  The 'coroutine' library depends on 'context',
               ;; so we disable that too.
-              ,@(if (equal? "mips64el-linux" (or (%current-target-system)
+              ,@(if (string-prefix? "mips64" (or (%current-target-system)
                                                  (%current-system)))
                     '("--without-context" "--without-coroutine")
                     '()))))



reply via email to

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