guix-devel
[Top][All Lists]
Advanced

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

Re: [PATCH] Fix jellyfish on non-x86_64


From: Efraim Flashner
Subject: Re: [PATCH] Fix jellyfish on non-x86_64
Date: Sat, 27 Feb 2016 22:22:27 +0200

On Sat, 27 Feb 2016 17:10:07 +0100
Ricardo Wurmus <address@hidden> wrote:

> * gnu/packages/bioinformatics.scm (jellyfish)[arguments]: Append
>   "--with-sse=no" and "--with-int128=no" to configure flags unless the
>   system is x86_64.
> ---
>  gnu/packages/bioinformatics.scm | 6 +++++-
>  1 file changed, 5 insertions(+), 1 deletion(-)
> 
> diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
> index 7b3838d..36bcfd4 100644
> --- a/gnu/packages/bioinformatics.scm
> +++ b/gnu/packages/bioinformatics.scm
> @@ -1984,7 +1984,11 @@ experiments and provide highly stable thresholds based 
> on reproducibility.")
>         (list (string-append "--enable-ruby-binding="
>                              (assoc-ref %outputs "ruby"))
>               (string-append "--enable-python-binding="
> -                            (assoc-ref %outputs "python")))
> +                            (assoc-ref %outputs "python"))
> +             ,@(let ((system (or (%current-target-system) 
> (%current-system))))
> +                 (if (string-prefix? "x86_64" system)
> +                     '()
> +                    '("--with-sse=no" "--with-int128=no"))))
                       ^^
this looks like it's spaced off by 1

>         #:phases
>         (modify-phases %standard-phases
>           (add-before 'check 'set-SHELL-variable


-- 
Efraim Flashner   <address@hidden>   אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted

Attachment: pgpyQlbZxONK2.pgp
Description: OpenPGP digital signature


reply via email to

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