From 37b119fa0d93eec885d76643bf56dae83a2a403c Mon Sep 17 00:00:00 2001 From: Ben Date: Thu, 6 May 2010 14:59:51 -0400 Subject: [PATCH] Fix x86_64 CFLAGS detection. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2ca5378..a762511 100644 --- a/Makefile +++ b/Makefile @@ -59,7 +59,7 @@ COMPILE = gcc -DHAVE_CONFIG_H -I. $(GLIB_CFLAGS) $(DEBUG_CFLAGS) $(CFLAGS) WRAPPER = THPPW WRAPPER_PATH = perl/lib -ifeq ($(shell uname -i), x86_64) +ifeq ($(shell uname -m), x86_64) COMPILE := $(COMPILE) -fPIC endif -- 2.11.4.GIT