Skip to content
Snippets Groups Projects
Unverified Commit 723f3325 authored by Ricardo Wurmus's avatar Ricardo Wurmus
Browse files

gnu: femtolisp: Use INVOKE.

* gnu/packages/scheme.scm (femtolisp)[arguments]: Remove "bootstrap" phase;
use INVOKE and return #T unconditionally.
parent dd7bc92a
No related branches found
No related tags found
No related merge requests found
...@@ -1147,6 +1147,7 @@ (define-public femtolisp ...@@ -1147,6 +1147,7 @@ (define-public femtolisp
#:test-target "test" #:test-target "test"
#:phases #:phases
(modify-phases %standard-phases (modify-phases %standard-phases
(delete 'bootstrap)
(delete 'configure) ; No configure script (delete 'configure) ; No configure script
(replace 'install ; Makefile has no 'install phase (replace 'install ; Makefile has no 'install phase
(lambda* (#:key outputs #:allow-other-keys) (lambda* (#:key outputs #:allow-other-keys)
...@@ -1160,9 +1161,9 @@ (define-public femtolisp ...@@ -1160,9 +1161,9 @@ (define-public femtolisp
(lambda* (#:key outputs #:allow-other-keys) (lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out")) (let* ((out (assoc-ref outputs "out"))
(bin (string-append out "/bin"))) (bin (string-append out "/bin")))
(and (invoke "./bootstrap.sh")
(zero? (system* "./bootstrap.sh")) (install-file "flisp.boot" bin)
(install-file "flisp.boot" bin)))))))) #t))))))
(synopsis "Scheme-like lisp implementation") (synopsis "Scheme-like lisp implementation")
(description (description
"@code{femtolisp} is a scheme-like lisp implementation with a "@code{femtolisp} is a scheme-like lisp implementation with a
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment