From d2970098841d61e027a7d51ef9f107707d275b6a Mon Sep 17 00:00:00 2001 From: Sean Whitton Date: Fri, 21 May 2021 10:19:52 -0700 Subject: DATA-CKSUM: fix argument when calling cksum(1) Signed-off-by: Sean Whitton --- src/data.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/data.lisp') diff --git a/src/data.lisp b/src/data.lisp index aa78711..25d0338 100644 --- a/src/data.lisp +++ b/src/data.lisp @@ -64,8 +64,8 @@ prerequisite data.")) (parse-integer (car (split-string - (run-program - `("cksum" ,(data-file data)) :output :string)))))))) + (run-program `("cksum" ,(unix-namestring (data-file data))) + :output :string)))))))) ;; If this proves to be inadequate then an alternative would be to maintain a ;; mapping of ASDF systems to data sources, and then DEPLOY* could look up the -- cgit v1.2.3