X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=clsql-uffi.asd;h=19b9fb4ce44afbd342b35a4026c86998b9a6902f;hb=f6ab1b1e5f2cac1257f2a37de4260840c3204d51;hp=48372a1cff433b5060ae08a564e0f355c5108045;hpb=17255eb0ed45809a179853e9099d92d26d3717ac;p=clsql.git 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))