From 1b3ef7733686da9a98dbfea4b2086f02afe57fe5 Mon Sep 17 00:00:00 2001 From: polos Date: Fri, 30 Jun 2017 16:59:40 +0200 Subject: [PATCH] set version number to 17.6.1 --- src/eql.cpp | 2 +- src/make.lisp | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/src/eql.cpp b/src/eql.cpp index 407bf09..77da860 100644 --- a/src/eql.cpp +++ b/src/eql.cpp @@ -7,7 +7,7 @@ #include #include -const char EQL::version[] = "17.5.1"; // May 2017 +const char EQL::version[] = "17.6.1"; // June 2017 extern "C" void ini_EQL(cl_object); diff --git a/src/make.lisp b/src/make.lisp index 3f8573f..15be305 100644 --- a/src/make.lisp +++ b/src/make.lisp @@ -13,9 +13,10 @@ "special-extensions")) (dolist (f *lisp-files*) - (let ((file (format nil "lisp/~A" f))) - (when (probe-file file) - (delete-file (format nil "~A.~A" file #+msvc "obj" #-msvc "o"))) + (let* ((file (format nil "lisp/~A" f)) + (file.o (format nil "~A.~A" file #+msvc "obj" #-msvc "o"))) + (when (probe-file file.o) + (delete-file file.o)) (compile-file file :system-p t))) (c:build-static-library "ini_eql5"