From: Kevin M. Rosenberg Date: Wed, 3 Jan 2007 10:48:46 +0000 (+0000) Subject: r11444: use namestring since file name as two periods in it X-Git-Tag: v3.8.6~26 X-Git-Url: http://git.kpe.io/?p=clsql.git;a=commitdiff_plain;h=d7d1d243b0a859ce76fb2971249dd4f07bdc1b04 r11444: use namestring since file name as two periods in it --- 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"))))