gnu: clisp: Do not pass --build=<triplet> to configure.
* gnu/packages/lisp.scm (clisp)[arguments]: Add #:build #f.
This commit is contained in:
parent
b7e147fffd
commit
f90ef3c355
|
@ -168,7 +168,10 @@ supporting ASDF, Sockets, Gray streams, MOP, and other useful components.")
|
||||||
("readline" ,readline)
|
("readline" ,readline)
|
||||||
("libsigsegv" ,libsigsegv)))
|
("libsigsegv" ,libsigsegv)))
|
||||||
(arguments
|
(arguments
|
||||||
'(#:phases
|
'(;; XXX The custom configure script does not cope well when passed
|
||||||
|
;; --build=<triplet>.
|
||||||
|
#:build #f
|
||||||
|
#:phases
|
||||||
(alist-cons-after
|
(alist-cons-after
|
||||||
'unpack 'patch-sh-and-pwd
|
'unpack 'patch-sh-and-pwd
|
||||||
(lambda _
|
(lambda _
|
||||||
|
|
Loading…
Reference in New Issue