From 685493d6eea2e50b34a8bfa38375ea3e88744623 Mon Sep 17 00:00:00 2001 From: AJ Rossini Date: Wed, 11 Jul 2007 09:30:43 +0200 Subject: [PATCH] local init changes (need to mutomagicize; dependency cleanup --- init.lisp | 6 ++++-- lispstat.asd | 8 ++++---- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/init.lisp b/init.lisp index 39c0b69..0283f2d 100644 --- a/init.lisp +++ b/init.lisp @@ -9,8 +9,10 @@ ;; ensure appropriate tools are linked in for loading. ;; i.e. if features don't exist, load from particular locations in this directory structure. -(defvar *lispstat-home-dir* #p"/cygdrive/c/local/sandbox/Lisp/CommonLispStat/" - "Value considered \"home\" for our data") +(defvar *lispstat-home-dir* + ;; #p"/cygdrive/c/local/sandbox/Lisp/CommonLispStat/"w + #p"/home/tony/sandbox/CommonLispStat.git/" + "Value considered \"home\" for our data") (defmacro ls-dir (root-str) `(pathname (concatenate 'string (namestring *lispstat-home-dir*) ,root-str))) diff --git a/lispstat.asd b/lispstat.asd index 9296d33..3d20573 100644 --- a/lispstat.asd +++ b/lispstat.asd @@ -43,13 +43,13 @@ Last touched 1991, then in 2005--2007." (:lispstat-lsp-source-file "fastmap") (:lispstat-lsp-source-file "lstypes") (:lispstat-lsp-source-file "lsfloat") + (:lispstat-lsp-source-file "sequence") (:lispstat-lsp-source-file "compound" :depends-on ("lsobjects" - "fastmap")) + "fastmap" + "sequence")) (:lispstat-lsp-source-file "lsmacros" :depends-on ("compound")) - (:lispstat-lsp-source-file "sequence" - :depends-on ("compound")) (:lispstat-lsp-source-file "matrices" :depends-on ("sequence")) (:lispstat-lsp-source-file "linalg" @@ -72,7 +72,7 @@ Last touched 1991, then in 2005--2007." (:lispstat-lsp-source-file "dists" :depends-on ("lsbasics")) (:lispstat-lsp-source-file "ladata" - :depends-on ("lsbasics")) ;; in lisp-stat-basics + :depends-on ("lsbasics")) ;; mix/match lsp vs. lisp in next 2. -- 2.11.4.GIT