0.9.18.60:
authorChristophe Rhodes <csr21@cam.ac.uk>
Sun, 19 Nov 2006 11:26:15 +0000 (11:26 +0000)
committerChristophe Rhodes <csr21@cam.ac.uk>
Sun, 19 Nov 2006 11:26:15 +0000 (11:26 +0000)
Fix build on ppc/darwin (and probably also on ppc/linux)
... GNU make appears not to like the quotation marks around
the GC_SRC assignments.  The symptom was a silent
stop in the build after ldso-stubs.S.

src/runtime/Config.ppc-darwin
src/runtime/Config.ppc-linux
version.lisp-expr

index aa3a2d5..1fbf2c8 100644 (file)
@@ -21,9 +21,9 @@ ARCH_SRC = ppc-arch.c
 CPPFLAGS += -no-cpp-precomp
 
 ifdef LISP_FEATURE_GENCGC
-  GC_SRC = "gencgc.c"
+  GC_SRC = gencgc.c
 else
-  GC_SRC = "cheneygc.c"
+  GC_SRC = cheneygc.c
 endif
 
 .PHONY: after-grovel-headers
index a18c813..d2fe76c 100644 (file)
@@ -20,9 +20,9 @@ OS_SRC = linux-os.c ppc-linux-os.c
 OS_LIBS = -ldl
 
 ifdef LISP_FEATURE_GENCGC
-  GC_SRC = "gencgc.c"
+  GC_SRC = gencgc.c
 else
-  GC_SRC = "cheneygc.c"
+  GC_SRC = cheneygc.c
 endif
 
 # Nothing to do for after-grovel-headers.
index 8e200e9..da4c1ce 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.18.59"
+"0.9.18.60"