diff --git a/Makefile b/Makefile index 59e82ad..e5af8d5 100644 --- a/Makefile +++ b/Makefile @@ -15,6 +15,6 @@ quicklisp: build: $(LISP) --load eksd.asd \ --eval '(ql:quickload :eksd)' \ - --eval '(ql:quickload :eksd.unix)' \ - --eval '(asdf:make :eksd.unix)' \ + --eval '(ql:quickload :eksd/unix)' \ + --eval '(asdf:make :eksd/unix)' \ --eval '(quit)' diff --git a/eksd.asd b/eksd.asd index 1e4a0d2..5c902eb 100644 --- a/eksd.asd +++ b/eksd.asd @@ -9,7 +9,7 @@ :depends-on () :components ((:file "src/eksd"))) -(asdf:defsystem "eksd.unix" +(asdf:defsystem "eksd/unix" :version "0.11" :license "GPLv3" :author "Jaidyn Ann " @@ -18,6 +18,6 @@ :class asdf:program-system :build-operation "program-op" :build-pathname "eksd" - :entry-point "eksd.unix:main" + :entry-point "eksd/unix:main" :depends-on (:cl-strings :eksd :unix-opts) :components ((:file "src/unix"))) diff --git a/src/unix.lisp b/src/unix.lisp index 2ed1f05..ce15e16 100644 --- a/src/unix.lisp +++ b/src/unix.lisp @@ -15,12 +15,12 @@ ;; You should have received a copy of the GNU General Public License ;; along with this program. If not, see . -(defpackage :eksd.unix +(defpackage :eksd/unix (:use :cl :eksd) (:export :main *text-table*)) -(in-package :eksd.unix) +(in-package :eksd/unix) ;;; —————————————————————————————————————