diff --git a/gnu/packages/mpi.scm b/gnu/packages/mpi.scm index 420291d7f0..abe4fac470 100644 --- a/gnu/packages/mpi.scm +++ b/gnu/packages/mpi.scm @@ -2,6 +2,7 @@ ;;; Copyright © 2014, 2015 Eric Bavier ;;; Copyright © 2014, 2015 Ludovic Courtès ;;; Copyright © 2014 Ian Denhardt +;;; Copyright © 2016 Andreas Enge ;;; ;;; This file is part of GNU Guix. ;;; @@ -54,8 +55,12 @@ `(("libx11" ,libx11) ("cairo" ,cairo) ("ncurses" ,ncurses) - ("numactl" ,numactl) - ("expat" ,expat))) + ("expat" ,expat) + ,@(if (not (string-prefix? "armhf" + (or (%current-target-system) + (%current-system)))) + `(("numactl" ,numactl)) + '()))) (propagated-inputs ;; hwloc.pc lists it in 'Requires.private'. `(("libpciaccess" ,libpciaccess)))