You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-lisp/asdf/files/gentoo-init.lisp

13 lines
354 B

(in-package #:cl-user)
#-(or cmu ccl ecl sbcl)
(let ((*compile-print* nil)
(*compile-verbose* nil)
#+cmu (ext:*gc-verbose* nil))
(handler-bind ((warning #'muffle-warning))
(load #p"@GENTOO_PORTAGE_EPREFIX@/usr/share/common-lisp/source/asdf/build/asdf.lisp"
:print nil :verbose nil)))
#+(or cmu ccl ecl sbcl)
(require :asdf)