me
/
guix
Archived
1
0
Fork 0

gnu: boost: Fix target-system check.

* gnu/packages/boost.scm (boost): Fix target-system check.
master
Mark H Weaver 2015-01-06 13:22:42 -05:00
parent d2e842814a
commit 7cd802f342
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
;;; GNU Guix --- Functional package management for GNU ;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2014 John Darrington <jmd@gnu.org> ;;; Copyright © 2014 John Darrington <jmd@gnu.org>
;;; Copyright © 2014 Mark H Weaver <mhw@netris.org> ;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -53,7 +53,7 @@
;; Boost's 'context' library is not yet supported on mips64, so ;; Boost's 'context' library is not yet supported on mips64, so
;; we disable it. The 'coroutine' library depends on 'context', ;; we disable it. The 'coroutine' library depends on 'context',
;; so we disable that too. ;; so we disable that too.
,@(if (equal? "mips64el-linux" (or (%current-target-system) ,@(if (string-prefix? "mips64" (or (%current-target-system)
(%current-system))) (%current-system)))
'("--without-context" "--without-coroutine") '("--without-context" "--without-coroutine")
'())))) '()))))