From a87a86022eced906811879c796e396c626220be0 Mon Sep 17 00:00:00 2001 From: Andreas Fuchs Date: Sat, 14 Jan 2006 20:01:07 +0000 Subject: [PATCH] 0.9.8.39: make sb-posix's asd file load sb-grovel with asdf This change should make it possible to run tests even if sb-grovel is not in $SBCL_HOME. --- contrib/sb-posix/sb-posix.asd | 3 ++- version.lisp-expr | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/contrib/sb-posix/sb-posix.asd b/contrib/sb-posix/sb-posix.asd index 1407a1e..b3fd54d 100644 --- a/contrib/sb-posix/sb-posix.asd +++ b/contrib/sb-posix/sb-posix.asd @@ -1,5 +1,6 @@ ;;; -*- Lisp -*- -(require :sb-grovel) +(cl:eval-when (:compile-toplevel :load-toplevel :execute) + (asdf:oos 'asdf:load-op :sb-grovel)) (defpackage #:sb-posix-system (:use #:asdf #:cl #:sb-grovel)) (in-package #:sb-posix-system) diff --git a/version.lisp-expr b/version.lisp-expr index 6fa93b3..fab6341 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -17,4 +17,4 @@ ;;; checkins which aren't released. (And occasionally for internal ;;; versions, especially for internal versions off the main CVS ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".) -"0.9.8.38" +"0.9.8.39" -- 1.7.10.4