Skip to content

Commit

Permalink
if* -> cond to be friendly of non-Allegro Lisps
Browse files Browse the repository at this point in the history
  • Loading branch information
e40 committed Sep 16, 2015
1 parent 1d1173f commit f164678
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions cl-quakeinfo.asd
Expand Up @@ -9,11 +9,13 @@

(asdf:disable-output-translations)

(if* asdf:*central-registry*
then (push #p"../cl-geocode/" asdf:*central-registry*)
else (setf asdf:*central-registry*
'(*default-pathname-defaults*
#p"../cl-geocode/")))
(cond
(asdf:*central-registry*
(push #p"../cl-geocode/" asdf:*central-registry*))
(t
(setf asdf:*central-registry*
'(*default-pathname-defaults*
#p"../cl-geocode/"))))

(asdf:defsystem cl-quakeinfo
:default-component-class cl-quakeinfo-source-file
Expand Down

0 comments on commit f164678

Please sign in to comment.