X-Git-Url: http://git.kpe.io/?p=clsql.git;a=blobdiff_plain;f=clsql.asd;fp=clsql.asd;h=20f29d5b43abf1b26151270d162116c7ba327c7a;hp=0d564b67fdf89de8ab01cad74831a7948531d084;hb=d7d1d243b0a859ce76fb2971249dd4f07bdc1b04;hpb=b0d8b82d162436bf2a7406b4cea489084c232a85 diff --git a/clsql.asd b/clsql.asd index 0d564b6..20f29d5 100644 --- a/clsql.asd +++ b/clsql.asd @@ -99,9 +99,10 @@ oriented interface." (defmethod perform :after ((o load-op) (c (eql (find-system 'clsql)))) (let* ((init-var (uffi:getenv "CLSQLINIT")) (init-file (or (when init-var (probe-file init-var)) - (merge-pathnames - (make-pathname :name ".clsql-init" :type "lisp") - (user-homedir-pathname)) + (probe-file + (concatenate 'string + (namestring (user-homedir-pathname)) + ".clsql-init.lisp")) (probe-file "/etc/clsql-init.lisp") #+(or mswin windows win32) (probe-file "c:\\etc\\clsql-init.lisp"))))