From 446d97b75aed88b254cc1640fb91e110a2ca401b Mon Sep 17 00:00:00 2001 Message-Id: <446d97b75aed88b254cc1640fb91e110a2ca401b.1714773673.git.mdw@distorted.org.uk> From: Mark Wooding Date: Mon, 14 Apr 2008 10:32:47 +0100 Subject: [PATCH 1/1] driver: Use asdf rather than CLC to start the program. Organization: Straylight/Edgeware From: Mark Wooding This gives us more control over the verbose output. --- zone | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zone b/zone index 8befb1d..a5708da 100755 --- a/zone +++ b/zone @@ -1,5 +1,5 @@ #! /usr/local/bin/runlisp ;;; -*-lisp-*- -(clc:clc-require "zone") +(asdf:oos 'asdf:load-op "zone" :verbose nil) (zone.frontend:main) -- [mdw]