From 33353162b9fea0bf13a79f0860a9e91da1bbede3 Mon Sep 17 00:00:00 2001 From: Rudi Schlatte Date: Wed, 29 Mar 2006 09:13:08 +0000 Subject: [PATCH] 0.9.11.6 Merge "patch for sb-grovel" (sbcl-devel 2006-03-29) ... conditionalize temporary executable name for windows --- contrib/sb-grovel/def-to-lisp.lisp | 3 ++- version.lisp-expr | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/contrib/sb-grovel/def-to-lisp.lisp b/contrib/sb-grovel/def-to-lisp.lisp index 0c8159c..375e847 100644 --- a/contrib/sb-grovel/def-to-lisp.lisp +++ b/contrib/sb-grovel/def-to-lisp.lisp @@ -155,7 +155,8 @@ code: (translate-logical-pathname output-file) (pathname output-file))) (tmp-c-source (merge-pathnames #p"foo.c" real-output-file)) - (tmp-a-dot-out (merge-pathnames #p"a.out" real-output-file)) + (tmp-a-dot-out (merge-pathnames #-win32 #p"a.out" #+win32 #p"a.exe" + real-output-file)) (tmp-constants (merge-pathnames #p"constants.lisp-temp" real-output-file))) (princ (list filename output-file real-output-file diff --git a/version.lisp-expr b/version.lisp-expr index 23c6d0c..1afe88b 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.11.5" +"0.9.11.6" -- 1.7.10.4