Skip to content
Snippets Groups Projects
Commit a9ee852b authored by pmai's avatar pmai
Browse files

This change brings the defaults for CMUCLLIB and the default core on

Linux in-line with all other non-MACH platforms, and with the Linux
Filesystem Standard.
parent a27905fd
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain. ;;; Carnegie Mellon University, and has been placed in the public domain.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/save.lisp,v 1.40 2001/07/08 16:33:04 pw Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/save.lisp,v 1.41 2001/11/29 01:46:58 pmai Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -91,8 +91,7 @@ ...@@ -91,8 +91,7 @@
(setf (search-list "library:") (setf (search-list "library:")
(or (parse-unix-search-list :cmucllib) (or (parse-unix-search-list :cmucllib)
'(#+linux "/usr/lib/cmucl/" '("/usr/local/lib/cmucl/lib/")))
#-linux "/usr/local/lib/cmucl/lib/")))
(setf (search-list "modules:") (ext:unix-namestring "library:subsystems/"))) (setf (search-list "modules:") (ext:unix-namestring "library:subsystems/")))
......
/* /*
* main() entry point for a stand alone lisp image. * main() entry point for a stand alone lisp image.
* *
* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/lisp.c,v 1.23 2001/02/22 20:28:54 pw Exp $ * $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/lisp.c,v 1.24 2001/11/29 01:46:59 pmai Exp $
* *
*/ */
...@@ -180,12 +180,8 @@ int main(int argc, char *argv[], char *envp[]) ...@@ -180,12 +180,8 @@ int main(int argc, char *argv[], char *envp[])
into the lisp code in .../code/save.lisp. */ into the lisp code in .../code/save.lisp. */
#ifdef MACH #ifdef MACH
strcpy(buf, "/usr/misc/.cmucl/lib/"); strcpy(buf, "/usr/misc/.cmucl/lib/");
#else
#ifdef __linux__
strcpy(buf, "/usr/lib/cmucl/");
#else #else
strcpy(buf, "/usr/local/lib/cmucl/lib/"); strcpy(buf, "/usr/local/lib/cmucl/lib/");
#endif
#endif #endif
strcat(buf, default_core); strcat(buf, default_core);
core = buf; core = buf;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment