Changeset 1797

Show
Ignore:
Timestamp:
01/24/06 09:37:39 (3 years ago)
Author:
hhubner
Message:

Directory reorganization. We now have bknr/, modules/ and projects/ on
the top level in order to isolate base BKNR from extensions and the
project code. This is done in preperation of asdf-install'ability at
least the base components.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/thirdparty/cl-gd

    • Property svn:ignore set to
      cl-gd-glue.so
  • trunk/tools/make-core.lisp

    r1703 r1797  
    66 
    77(defparameter *src-directory* (make-pathname :directory (pathname-directory *load-truename*))) 
    8 (defparameter *thirdparty-directory* (merge-pathnames #p"bknr-svn/thirdparty/" (user-homedir-pathname))) 
    9 (defparameter *bknr-directory* (merge-pathnames #p"bknr-svn/bknr/" (user-homedir-pathname))) 
     8(defparameter *bknr-directory* (merge-pathnames #p"bknr-svn/" (user-homedir-pathname))) 
    109 
    1110#+cmu #-cmu19b 
    12 (load (merge-pathnames "patches/patch-around-mop-cmucl19a.lisp" *bknr-directory*)) 
    13 (load (merge-pathnames "asdf/asdf.lisp" *thirdparty-directory*)) 
     11(load (merge-pathnames "bknr/patches/patch-around-mop-cmucl19a.lisp" *bknr-directory*)) 
     12#-asdf 
     13(error "No ASDF found in image, please provide one through the default image or home:init.lisp") 
     14 
    1415 
    1516(pushnew *src-directory* asdf:*central-registry* :test #'equal) 
     
    2627        (directory (merge-pathnames #p"**/*.asd" directory-path)))) 
    2728 
    28 (setup-registry *thirdparty-directory*) 
    2929(setup-registry *bknr-directory*) 
    3030