From f95da86029961ef7cddbd53e746808f87e2b5c34 Mon Sep 17 00:00:00 2001 From: simon Date: Mon, 26 Apr 2010 17:26:38 +0000 Subject: [PATCH] Fix a build-breaking bug I introduced to the OS X makefile in r8931. (Missed off the explicit -o from the compile lines constructing version.{i386,ppc}.o, causing both to be compiled as version.o and dependent build steps to fail.) git-svn-id: svn://svn.tartarus.org/sgt/puzzles@8933 cda61777-01e9-0310-a592-d414129be87e --- Recipe | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Recipe b/Recipe index e57e7cd..7907a2e 100644 --- a/Recipe +++ b/Recipe @@ -152,9 +152,9 @@ version2.def: FORCE # generates _nearly_ the same output, but it has no check function. !begin osx version.ppc.o: version.c version2.def - $(CC) -arch ppc $(COMPAT) $(XFLAGS) $(CFLAGS) `cat version2.def` -c version.c + $(CC) -arch ppc $(COMPAT) $(XFLAGS) $(CFLAGS) `cat version2.def` -c version.c -o $@ version.i386.o: version.c version2.def - $(CC) -arch i386 $(COMPAT) $(XFLAGS) $(CFLAGS) `cat version2.def` -c version.c + $(CC) -arch i386 $(COMPAT) $(XFLAGS) $(CFLAGS) `cat version2.def` -c version.c -o $@ version2.def: FORCE if test -z "$(VER)" && test -f manifest && (md5 -r `awk '{print $$2}' manifest` | diff -w manifest -); then \ cat version.def > version2.def.new; \ -- 2.11.0