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:
Glenn Thompson 2025-11-07 09:17:18 +03:00
parent 85f3cef33d
commit f6c377df8d
2 changed files with 5 additions and 3 deletions

View File

@ -3,8 +3,9 @@
(unless *load-pathname*
(error "Please LOAD this file."))
(when (find-package :quicklisp)
(error "Please run this file as a script or from the Makefile."))
;; Commented out to allow building with Quicklisp already loaded
;; (when (find-package :quicklisp)
;; (error "Please run this file as a script or from the Makefile."))
(defpackage #:asteroid-bootstrap
(:use #:cl)

View File

@ -65,7 +65,8 @@ This branch experiments with converting all JavaScript files to ParenScript, all
* ParenScript Resources
- [[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