From: Kevin M. Rosenberg Date: Sun, 18 Aug 2002 04:39:59 +0000 (+0000) Subject: r2302: *** empty log message *** X-Git-Tag: v3.8.6~963 X-Git-Url: http://git.kpe.io/?p=clsql.git;a=commitdiff_plain;h=7bc4dfb23f87f18f34b32db380d4aec42e535a61 r2302: *** empty log message *** --- diff --git a/clsql-base.asd b/clsql-base.asd index b39363e..f17a169 100644 --- a/clsql-base.asd +++ b/clsql-base.asd @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Feb 2002 ;;;; -;;;; $Id: clsql-base.asd,v 1.2 2002/08/18 04:08:56 kevin Exp $ +;;;; $Id: clsql-base.asd,v 1.3 2002/08/18 04:39:59 kevin Exp $ ;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -25,7 +25,12 @@ (when (probe-file helper-pathname) (load helper-pathname))) -;;; System definitions +(unless (ignore-errors (find-class 'clsql-cl-source-file)) + (defclass clsql-cl-source-file (cl-source-file) ()) + (defmethod source-file-type ((c clsql-cl-source-file) (s module)) + "cl")) + + ;;; System definitions (defsystem clsql-base :default-component-class clsql-cl-source-file diff --git a/clsql-uffi.asd b/clsql-uffi.asd index 848f3b1..2c010e8 100644 --- a/clsql-uffi.asd +++ b/clsql-uffi.asd @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Aug 2002 ;;;; -;;;; $Id: clsql-uffi.asd,v 1.1 2002/08/18 02:57:50 kevin Exp $ +;;;; $Id: clsql-uffi.asd,v 1.2 2002/08/18 04:39:59 kevin Exp $ ;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -20,11 +20,6 @@ (in-package :asdf) -(unless (find-class 'clsql-cl-source-file) - (defclass clsql-cl-source-file (cl-source-file) ()) - (defmethod source-file-type ((c clsql-cl-source-file) (s module)) - "cl")) - ;;; System definition (defsystem clsql-uffi diff --git a/debian/make-debian.sh b/debian/make-debian.sh index 039dbe3..1b946fa 100755 --- a/debian/make-debian.sh +++ b/debian/make-debian.sh @@ -1,5 +1,5 @@ #!/bin/bash -e -bdeb.sh -Sclsql -Dcl-sql -bc -bp $* +bdeb clsql -bc -bp $* exit 0