From: Kevin M. Rosenberg Date: Wed, 21 Apr 2004 03:31:27 +0000 (+0000) Subject: r9117: Automated commit for Debian build of clsql upstream-version-2.9.1 X-Git-Tag: v3.8.6~596 X-Git-Url: http://git.kpe.io/?p=clsql.git;a=commitdiff_plain;h=afc88420d03b627b214473078c3adc201de2de80 r9117: Automated commit for Debian build of clsql upstream-version-2.9.1 --- diff --git a/clsql-mysql.asd b/clsql-mysql.asd index 7c77bab..a229791 100644 --- a/clsql-mysql.asd +++ b/clsql-mysql.asd @@ -53,14 +53,15 @@ t)) (defmethod perform ((o compile-op) (c clsql-mysql-source-file)) - #-(or win32 mswindows) - (unless (zerop (run-shell-command - #-freebsd "cd ~A; make" - #+freebsd "cd ~A; gmake" - (namestring (make-pathname :name nil - :type nil - :directory *library-file-dir*)))) - (error 'operation-error :component c :operation o))) + (unless (operation-done-p o c) + #-(or win32 mswindows) + (unless (zerop (run-shell-command + #-freebsd "cd ~A; make" + #+freebsd "cd ~A; gmake" + (namestring (make-pathname :name nil + :type nil + :directory *library-file-dir*)))) + (error 'operation-error :component c :operation o)))) (defmethod operation-done-p ((o compile-op) (c clsql-mysql-source-file)) (or (and (probe-file #p"/usr/lib/clsql/mysql.so") t) diff --git a/clsql-uffi.asd b/clsql-uffi.asd index fb22dc1..18fcf00 100644 --- a/clsql-uffi.asd +++ b/clsql-uffi.asd @@ -59,14 +59,15 @@ t)) (defmethod perform ((o compile-op) (c clsql-uffi-source-file)) - #-(or win32 mswindows) - (unless (zerop (run-shell-command - #-freebsd "cd ~A; make" - #+freebsd "cd ~A; gmake" - (namestring (make-pathname :name nil - :type nil - :directory *library-file-dir*)))) - (error 'operation-error :component c :operation o))) + (unless (operation-done-p o c) + #-(or win32 mswindows) + (unless (zerop (run-shell-command + #-freebsd "cd ~A; make" + #+freebsd "cd ~A; gmake" + (namestring (make-pathname :name nil + :type nil + :directory *library-file-dir*)))) + (error 'operation-error :component c :operation o)))) (defmethod operation-done-p ((o compile-op) (c clsql-uffi-source-file)) (or (and (probe-file #p"/usr/lib/clsql/uffi.so") t)