blob: 1a855466a23ac3d38138c08acee652e7baa54272 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
(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)
|