Skip to content

Commit

Permalink
mahogany: download quicklisp dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
echawk committed Apr 25, 2024
1 parent c94473c commit 9ce31c4
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion wayland/mahogany/build
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@
(uiop:native-namestring ql-local-proj-dir)
" " "https://github.com/" repo)))))

;; Download the rest of the quicklisp dependencies.
(ql:quickload '(:alexandria :cl-ansi-text :terminfo
:snakes :iterate :cffi :cffi-grovel :closer-mop)
:silent t)

(mapc
;; Ideally this would be a 'dolist' however uiop:run-program was
;; giving errors, which is odd to say the least.
Expand All @@ -38,7 +43,7 @@
(lambda (cmd-lst)
(if (= (length cmd-lst) 1)
(car cmd-lst)
(format nil "~{~a~}" cmd-lst)))
(format nil "~{~a~}" cmd-lst)))
`(
;; Don't clone wlroots...
("rm -rf heart/subprojects/")
Expand Down

0 comments on commit 9ce31c4

Please sign in to comment.