From: Kevin M. Rosenberg Date: Tue, 6 May 2003 04:42:55 +0000 (+0000) Subject: r4831: Auto commit for Debian build X-Git-Tag: v2006ac.2~193 X-Git-Url: http://git.kpe.io/?a=commitdiff_plain;h=62d7e28a7064f0cb91a972560846cab424ffeb24;p=umlisp.git r4831: Auto commit for Debian build --- diff --git a/sql-create.lisp b/sql-create.lisp index 096d3d4..700af8f 100644 --- a/sql-create.lisp +++ b/sql-create.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id: sql-create.lisp,v 1.12 2003/05/06 04:33:14 kevin Exp $ +;;;; $Id: sql-create.lisp,v 1.13 2003/05/06 04:42:55 kevin Exp $ ;;;; ;;;; This file, part of UMLisp, is ;;;; Copyright (c) 2000-2002 by Kevin M. Rosenberg, M.D. @@ -197,8 +197,8 @@ This is much faster that using create-umls-db-insert." "Translate a umls file into a format suitable for sql copy cmd" (let ((output-path (umls-pathname filename extension)) (input-files (mklist files))) - (if (probe-file path) - (format t "File ~A already exists: skipping~%" path) + (if (probe-file output-path) + (format t "File ~A already exists: skipping~%" output-path) (dolist (input-file input-files) (with-open-file (ostream output-path :direction :output) (with-umls-file (line (umls-file-fil input-file))