From eb847460ba81a49a56c4d7144d97761c151d05b6 Mon Sep 17 00:00:00 2001 From: Sean Whitton Date: Sun, 21 Feb 2021 09:04:11 -0700 Subject: have asdf check function actually return a version Signed-off-by: Sean Whitton --- src/data/asdf.lisp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/data') diff --git a/src/data/asdf.lisp b/src/data/asdf.lisp index 08165b9..fee169e 100644 --- a/src/data/asdf.lisp +++ b/src/data/asdf.lisp @@ -33,8 +33,9 @@ (cons #'asdf-data-source-check #'get-path-to-concatenated-system)) (defun asdf-data-source-check (iden1 system) - (and (string= iden1 "lisp-system") - (asdf:find-system system nil))) + (when (and (string= iden1 "lisp-system") + (asdf:find-system system nil)) + (get-universal-time))) (defun get-path-to-concatenated-system (iden1 system) "Try to concatenate all the source code for SYSTEM, store it somewhere and -- cgit v1.2.3