Created
March 8, 2012 09:27
-
-
Save goncha/1999909 to your computer and use it in GitHub Desktop.
LispWorks bootstrap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(in-package "CL-USER") | |
(change-directory "D:\\code\\lisp\\") | |
(dolist (file (list "asdf.lisp")) | |
(compile-file file :load t)) | |
(setf asdf:*central-registry* | |
(remove-if #'null | |
(mapcar #'(lambda (file) (if (eq :unspecific (pathname-name file)) file)) | |
(directory #P"D:/code/lisp/")))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment