diff options
Diffstat (limited to 'dev-lisp')
-rw-r--r-- | dev-lisp/sbcl/ChangeLog | 5 | ||||
-rw-r--r-- | dev-lisp/sbcl/sbcl-1.0.10.ebuild | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/dev-lisp/sbcl/ChangeLog b/dev-lisp/sbcl/ChangeLog index 3a4e9b1ca65b..a5ff58662902 100644 --- a/dev-lisp/sbcl/ChangeLog +++ b/dev-lisp/sbcl/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-lisp/sbcl # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lisp/sbcl/ChangeLog,v 1.130 2007/10/02 18:28:54 pylon Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lisp/sbcl/ChangeLog,v 1.131 2007/10/18 17:01:12 hkbst Exp $ + + 18 Oct 2007; Marijn Schouten <hkBst@gentoo.org> sbcl-1.0.10.ebuild: + small fix for running your own dumped images 02 Oct 2007; Lars Weiler <pylon@gentoo.org> sbcl-1.0.9.ebuild: stable ppc, bug #194519 diff --git a/dev-lisp/sbcl/sbcl-1.0.10.ebuild b/dev-lisp/sbcl/sbcl-1.0.10.ebuild index 319686a6dbe8..b875352bac94 100644 --- a/dev-lisp/sbcl/sbcl-1.0.10.ebuild +++ b/dev-lisp/sbcl/sbcl-1.0.10.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lisp/sbcl/sbcl-1.0.10.ebuild,v 1.1 2007/09/27 11:49:42 hkbst Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lisp/sbcl/sbcl-1.0.10.ebuild,v 1.2 2007/10/18 17:01:12 hkbst Exp $ inherit common-lisp-common-3 eutils flag-o-matic @@ -165,6 +165,9 @@ EOF find "${D}/usr/$(get_libdir)/sbcl/src" -type f -name \*.fasl -print0 | xargs -0 rm -f fi + # necessary for running newly-saved images + echo "SBCL_HOME=/usr/$(get_libdir)/sbcl" >> "${T}/50sbcl"; doenvd "${T}/50sbcl" + impl-save-timestamp-hack sbcl } |