From 6a0296003175dce3cc43c6c9296bca90c2743b6a Mon Sep 17 00:00:00 2001 From: Raymond Toy <toy.raymond@gmail.com> Date: Wed, 24 Jun 2015 17:45:26 +0200 Subject: [PATCH] Fix args to run-program for cmucl so that it actually has the right args. Also update so that it uses the correct fasl extension instead of the hardwired x86f. --- compileit.lsp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/compileit.lsp b/compileit.lsp index 1facfe0b..4185f56c 100644 --- a/compileit.lsp +++ b/compileit.lsp @@ -5,7 +5,9 @@ ;; (pushnew :ansi-tests-strict-initial-element *features*) #+allegro (run-shell-command "rm -f *.fasl") -#+cmu (run-program "rm -f *.x86f") +#+cmu (run-program "rm" (list "-f" + (concatenate 'string "*." + (pathname-type (compile-file-pathname "a.lisp"))))) (load "gclload1.lsp") (load "gclload2.lsp") -- GitLab