From d7d1d243b0a859ce76fb2971249dd4f07bdc1b04 Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Wed, 3 Jan 2007 10:48:46 +0000 Subject: [PATCH] r11444: use namestring since file name as two periods in it --- clsql.asd | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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")))) -- 2.34.1