From a85cf0115d02f4c490cac457f9e3ff3d285071da Mon Sep 17 00:00:00 2001 From: Joel Dice Date: Tue, 24 Jun 2008 14:58:58 -0600 Subject: [PATCH] fix makefile for building on linux This may break OS X PowerPC, but I don't have such a machine to test on at the moment. --- makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/makefile b/makefile index 9c856a9883..552d296e90 100644 --- a/makefile +++ b/makefile @@ -1,10 +1,10 @@ -MAKEFLAGS = -s +#MAKEFLAGS = -s name = avian version = 0.1.1 -build-arch = "$(shell uname -m)" -ifeq ($(build-arch),"Power Macintosh") +build-arch = $(shell uname -m) +ifeq ($(build-arch),Power) build-arch = powerpc endif ifeq ($(build-arch),i586)