From 81ba4d3341e0c98b09bedef78b649a3efd4dcd2e Mon Sep 17 00:00:00 2001 From: Christophe Rhodes Date: Sun, 19 Nov 2006 11:26:15 +0000 Subject: [PATCH] 0.9.18.60: 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 | 4 ++-- src/runtime/Config.ppc-linux | 4 ++-- version.lisp-expr | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/runtime/Config.ppc-darwin b/src/runtime/Config.ppc-darwin index aa3a2d5..1fbf2c8 100644 --- a/src/runtime/Config.ppc-darwin +++ b/src/runtime/Config.ppc-darwin @@ -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 diff --git a/src/runtime/Config.ppc-linux b/src/runtime/Config.ppc-linux index a18c813..d2fe76c 100644 --- a/src/runtime/Config.ppc-linux +++ b/src/runtime/Config.ppc-linux @@ -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. diff --git a/version.lisp-expr b/version.lisp-expr index 8e200e9..da4c1ce 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.18.59" +"0.9.18.60" -- 1.7.10.4