X-Git-Url: http://git.kpe.io/?p=clsql.git;a=blobdiff_plain;f=clsql-uffi.asd;h=19b9fb4ce44afbd342b35a4026c86998b9a6902f;hp=48372a1cff433b5060ae08a564e0f355c5108045;hb=78489032c6f66ce666ffe5e2e726503b61b94616;hpb=16cede958e7f229e2502ab6309591e344bee54f5 diff --git a/clsql-uffi.asd b/clsql-uffi.asd index 48372a1..19b9fb4 100644 --- a/clsql-uffi.asd +++ b/clsql-uffi.asd @@ -21,8 +21,9 @@ (defpackage clsql-uffi-system (:use #:asdf #:cl)) (in-package clsql-uffi-system) -(defvar *library-file-dir* (append (pathname-directory *load-truename*) - (list "uffi"))) +(defvar *clsql-uffi-library-dir* + (merge-pathnames "uffi/" + (make-pathname :name nil :type nil :defaults *load-truename*))) (defclass clsql-uffi-source-file (c-source-file) ()) @@ -43,7 +44,7 @@ found (make-pathname :name (component-name c) :type library-file-type - :directory *library-file-dir*))))) + :defaults *clsql-uffi-library-dir*))))) (defmethod perform ((o load-op) (c clsql-uffi-source-file)) nil) ;;; library will be loaded by a loader file @@ -59,9 +60,7 @@ (unless (zerop (run-shell-command #-freebsd "cd ~A; make" #+freebsd "cd ~A; gmake" - (namestring (make-pathname :name nil - :type nil - :directory *library-file-dir*)))) + (namestring *clsql-uffi-library-dir*))) (error 'operation-error :component c :operation o)))) (defmethod operation-done-p ((o compile-op) (c clsql-uffi-source-file))