0.9.11.6
authorRudi Schlatte <rudi@constantly.at>
Wed, 29 Mar 2006 09:13:08 +0000 (09:13 +0000)
committerRudi Schlatte <rudi@constantly.at>
Wed, 29 Mar 2006 09:13:08 +0000 (09:13 +0000)
    Merge "patch for sb-grovel" (sbcl-devel 2006-03-29)
    ... conditionalize temporary executable name for windows

contrib/sb-grovel/def-to-lisp.lisp
version.lisp-expr

index 0c8159c..375e847 100644 (file)
@@ -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
index 23c6d0c..1afe88b 100644 (file)
@@ -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"