CM Build anomolies

Tobias Kunze t@ulysses.Stanford.EDU
Tue, 18 Nov 1997 19:18:18 -0800


does your build/make-cm.lisp file have these lines?


    ;; maybe load CLM
    #-clm
    (when (and clm-directory (find ':clm syntaxes))
      (let ((*default-pathname-defaults* (pathname clm-directory))
	    (loadfile (namestring (merge-pathnames
				   "load-all.cl" clm-directory))))
	(if (probe-file loadfile)
	  (load loadfile)
	  (error "Can't find CLM load script: ~S."
		 loadfile))))
     ;; maybe load CMN
    #-cmn
    (when (and cmn-directory (find ':cmn syntaxes))
      (let ((*default-pathname-defaults* (pathname cmn-directory)))
	(load (filename cmn-directory "load-all.lisp"))))