diff options
author | Mark H Weaver <mhw@netris.org> | 2015-07-17 18:33:05 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2015-07-17 18:34:05 -0400 |
commit | f90ef3c355a009e0d41ce02a9138b841165dcb49 (patch) | |
tree | 1539b994d5d8558a4299233004d5748efad5c872 /gnu/packages/lisp.scm | |
parent | b7e147fffd05951b91e1e042a644ea7bc5394990 (diff) | |
download | patches-f90ef3c355a009e0d41ce02a9138b841165dcb49.tar patches-f90ef3c355a009e0d41ce02a9138b841165dcb49.tar.gz |
gnu: clisp: Do not pass --build=<triplet> to configure.
* gnu/packages/lisp.scm (clisp)[arguments]: Add #:build #f.
Diffstat (limited to 'gnu/packages/lisp.scm')
-rw-r--r-- | gnu/packages/lisp.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index feaa08af38..78ff83de15 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -168,7 +168,10 @@ supporting ASDF, Sockets, Gray streams, MOP, and other useful components.") ("readline" ,readline) ("libsigsegv" ,libsigsegv))) (arguments - '(#:phases + '(;; XXX The custom configure script does not cope well when passed + ;; --build=<triplet>. + #:build #f + #:phases (alist-cons-after 'unpack 'patch-sh-and-pwd (lambda _ |