From 74c81accf870640c9d32b28c4053933ec2d51808 Mon Sep 17 00:00:00 2001 From: William Harold Newman Date: Wed, 24 Mar 2004 16:26:26 +0000 Subject: [PATCH] 0.8.9.1: hacked DocBook stuff to work with my old Debian setup --- doc/Makefile | 16 ++++++++++++---- version.lisp-expr | 2 +- 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/doc/Makefile b/doc/Makefile index 0f4e6d1..b5fad22 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -1,17 +1,25 @@ # Makefile for SBCL document generation +# This file is part of the SBCL system. It was copied from UFFI and +# placed into the public domain by the original author, Kevin +# Rosenberg. + DOCFILE_BASE_DEFAULT:=user-manual DOCFILE_EXT_DEFAULT:=xml -# Standard docfile processing as copied from UFFI -# Placed into public domain by author Kevin Rosenberg - SYSTEM:=$(shell uname) ifeq ($(SYSTEM),Linux) ifneq ($(shell expr "`cat /etc/issue`" : '.*Debian.*'),0) - OS:=debian + # Old Debian used /usr/share/sgml/docbook, new Debian uses + # /usr/share/xml/docbook. + ifneq ($(shell expr "`ls -d /usr/share/xml`" : '.*/usr/share/xml.*'),0) + OS:=debian else + # Evidently it's not a new-style Debian DocBook setup, ergo: + OS:=debian-old + endif + else ifneq ($(shell expr "`cat /etc/issue`" : '.*SuSE.*'),0) OS=suse else diff --git a/version.lisp-expr b/version.lisp-expr index a6fc076..9a13ed2 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.8.9" +"0.8.9.1" -- 1.7.10.4