From ae84c17174dae5c8655c021b8c0229bd186de595 Mon Sep 17 00:00:00 2001 From: Sean Whitton Date: Mon, 22 Feb 2021 17:30:30 -0700 Subject: set :IDEN1 and :IDEN2 when initialising DATA objects Signed-off-by: Sean Whitton --- src/data/asdf.lisp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/data/asdf.lisp') diff --git a/src/data/asdf.lisp b/src/data/asdf.lisp index 27ea41a..ed995e1 100644 --- a/src/data/asdf.lisp +++ b/src/data/asdf.lisp @@ -40,7 +40,6 @@ (defun get-path-to-concatenated-system (iden1 system) "Try to concatenate all the source code for SYSTEM, store it somewhere and return the filename." - (declare (ignore iden1)) (let ((cache-dir (ensure-directory-pathname (strcat (or (getenv "XDG_CACHE_HOME") (strcat (getenv "HOME") "/.cache")) @@ -54,4 +53,6 @@ return the filename." :ignore-inherited-configuration)) (asdf:operate op co) (make-instance 'file-data :file (asdf:output-file op co) - :mime "text/plain"))) + :mime "text/plain" + :iden1 iden1 + :iden2 system))) -- cgit v1.2.3