gnu: julia: Fix make-flags on non-Intel platforms.

* gnu/packages/julia.scm (julia)[arguments]: Add default case in 'match' form.
master
Mark H Weaver 2015-04-21 22:42:40 -04:00
parent f210f057a7
commit 446c7e4de3
1 changed files with 4 additions and 1 deletions

View File

@ -118,7 +118,10 @@
,(match (or (%current-target-system)
(%current-system))
("x86_64-linux" "MARCH=x86-64")
("i686-linux" "MARCH=pentium4"))
("i686-linux" "MARCH=pentium4")
;; Prevent errors when querying this package on unsupported
;; platforms, e.g. when running "guix package --search="
(_ "MARCH=UNSUPPORTED"))
"CONFIG_SHELL=bash" ;needed to build bundled libraries
"USE_SYSTEM_LIBUV=0" ;Julia expects a modified libuv