Skip to content

Commit

Permalink
Updated .sbclrc to work on both Mac OS X and Linux.
Browse files Browse the repository at this point in the history
  • Loading branch information
artob committed Feb 10, 2011
1 parent 74baefd commit baaba12
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .sbclrc
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
(require :asdf)

(pushnew #p"/opt/local/lib/lisp/" asdf:*central-registry* :test #'equal)
(pushnew #p"/Users/arto/.asdf/" asdf:*central-registry* :test #'equal)
#+darwin (pushnew #p"/Users/arto/.asdf/" asdf:*central-registry* :test #'equal)
#+linux (pushnew #p"/home/arto/.asdf/" asdf:*central-registry* :test #'equal)

(declaim #+sbcl(sb-ext:muffle-conditions style-warning))
(load "/opt/local/lib/lisp/de/setf/utility/asdf/hierarchical-names.lisp")
(declaim #+sbcl(sb-ext:unmuffle-conditions style-warning))
;(declaim #+sbcl(sb-ext:muffle-conditions style-warning))
;(load "/opt/local/lib/lisp/de/setf/utility/asdf/hierarchical-names.lisp")
;(declaim #+sbcl(sb-ext:unmuffle-conditions style-warning))

0 comments on commit baaba12

Please sign in to comment.