fix: Comment out Quicklisp check in build script and update ParenScript docs
- Allow building when Quicklisp is already loaded - Update ParenScript resources with correct GitLab repository URL
This commit is contained in:
parent
85f3cef33d
commit
f6c377df8d
|
|
@ -3,8 +3,9 @@
|
||||||
(unless *load-pathname*
|
(unless *load-pathname*
|
||||||
(error "Please LOAD this file."))
|
(error "Please LOAD this file."))
|
||||||
|
|
||||||
(when (find-package :quicklisp)
|
;; Commented out to allow building with Quicklisp already loaded
|
||||||
(error "Please run this file as a script or from the Makefile."))
|
;; (when (find-package :quicklisp)
|
||||||
|
;; (error "Please run this file as a script or from the Makefile."))
|
||||||
|
|
||||||
(defpackage #:asteroid-bootstrap
|
(defpackage #:asteroid-bootstrap
|
||||||
(:use #:cl)
|
(:use #:cl)
|
||||||
|
|
|
||||||
|
|
@ -65,7 +65,8 @@ This branch experiments with converting all JavaScript files to ParenScript, all
|
||||||
* ParenScript Resources
|
* ParenScript Resources
|
||||||
|
|
||||||
- [[https://parenscript.common-lisp.dev/][ParenScript Documentation]]
|
- [[https://parenscript.common-lisp.dev/][ParenScript Documentation]]
|
||||||
- [[https://github.com/vsedach/Parenscript][ParenScript GitHub]]
|
- [[https://gitlab.common-lisp.net/parenscript/parenscript][ParenScript GitLab Repository]]
|
||||||
|
- [[https://parenscript.common-lisp.dev/reference.html][ParenScript Reference Manual]]
|
||||||
|
|
||||||
* Lessons Learned
|
* Lessons Learned
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue