Skip to content

Commit

Permalink
fix module-directories auto-detect
Browse files Browse the repository at this point in the history
  • Loading branch information
David O'Toole committed Dec 12, 2009
1 parent c18e47e commit 64462bc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion INSTALL
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Installation and basic playing instructions are provided.
SVN. (see below for instructions.)

Your Linux distribution will have SDL packages for sdl, sdl-image,
and sdl-mixer, all of which are required libraries.
sdl-mixer, and sdl-gfx, all of which are required libraries.

2. If you have not already done so, download XE2:

Expand Down
4 changes: 3 additions & 1 deletion console.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -786,7 +786,9 @@ resource is stored; see also `find-resource'."
(list (make-pathname :directory
(pathname-directory
(load-time-value
(or #.*compile-file-truename* *load-truename*)))))
(or #.*compile-file-truename* *load-truename*))))
;; auto-config via sb-ext
(make-pathname :directory (pathname-directory (car sb-ext:*posix-argv*))))
"List of directories where XE2 will search for modules.
Directories are searched in list order.")

Expand Down

0 comments on commit 64462bc

Please sign in to comment.