From a567ca7005e52873467abcb41912ebe3edb407e4 Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Thu, 13 May 2004 13:13:15 +0000 Subject: [PATCH] r9352: fix --- debian/changelog | 4 ++-- vcs-tree.asd | 15 +++++++++------ 2 files changed, 11 insertions(+), 8 deletions(-) diff --git a/debian/changelog b/debian/changelog index a42bacd..e64a1b2 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,6 @@ -vcs-tree (0.2-4) unstable; urgency=low +vcs-tree (0.2.1-1) unstable; urgency=low - * Build against latest SBCL + * New upstream -- Kevin M. Rosenberg Thu, 13 May 2004 07:02:17 -0600 diff --git a/vcs-tree.asd b/vcs-tree.asd index fb73cc8..9022540 100644 --- a/vcs-tree.asd +++ b/vcs-tree.asd @@ -2,10 +2,10 @@ ;;;; ************************************************************************* ;;;; FILE IDENTIFICATION ;;;; -;;;; Name: vcs-tree.asd -;;;; Purpose: ASDF file for vcs-tree to create executable -;;;; Programmer: Kevin M. Rosenberg -;;;; Date Started: Sep 2003 +;;;; Name: vcs-tree.asd +;;;; Purpose: ASDF file for vcs-tree to create executable +;;;; Author: Kevin M. Rosenberg +;;;; Created: Sep 2003 ;;;; ;;;; $Id$ ;;;; ************************************************************************* @@ -23,8 +23,11 @@ (make-pathname :name "vcs-tree" :type nil :defaults (component-pathname c)) - '("package.fasl" "kmrcl-excerpt.fasl" "getopt-excerpt.fasl" "main.fasl" - "loader.fasl") + (mapcar + #'(lambda (n) + (make-pathname :name n :type "fasl" + :defaults (car (output-files o c)))) + '("package" "kmrcl-excerpt" "getopt-excerpt" "main" "loader")) :initial-function "RUN")) (defmethod perform ((o load-op) (c exe-file)) nil) -- 2.34.1