Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions lib/chibi/snow/commands.scm
Original file line number Diff line number Diff line change
Expand Up @@ -3014,10 +3014,11 @@
(if (member (car ls) lib-names)
(warn "skipping already installed library: " (car ls)))
(lp (cdr ls) res (cons (car ls) ignored)))
((and (null? candidates)
(not (assoc (car ls) current))
((and (not (assoc (car ls) current))
(pair? (car ls))
(implementation-supports-natively? impl cfg (car ls)))
(when (and (car ls) (equal? (car (car ls)) 'srfi))
(warn "skipping natively supported SRFI" (car ls)))
;; assume certain core libraries already installed
;; (info "assuming core library installed: " (car ls))
(lp (cdr ls) res (cons (car ls) ignored)))
Expand Down