From 58e7e0f3c0c42f6ad84fb4addcbbf266945e82a9 Mon Sep 17 00:00:00 2001 From: Steven Dake Date: Wed, 29 Jun 2005 21:33:26 +0000 Subject: [PATCH] defect 656 libraries not built with position independent code. This causes x86_64 not to build. git-svn-id: http://svn.fedorahosted.org/svn/corosync/trunk@720 fd59a12c-fef9-0310-b244-a6a79926bd2f --- lib/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Makefile b/lib/Makefile index 7b97d33e..4cf298a1 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -32,11 +32,11 @@ #LDFLAGS = # Debug mode flags -CFLAGS = -g -DDEBUG -Wall +CFLAGS = -g -DDEBUG -Wall -fPIC LDFLAGS = -g # Profile mode flags -#CFLAGS = -O3 -pg -DDEBUG +#CFLAGS = -O3 -pg -DDEBUG -fPIC #LDFLAGS = -pg # Code Coverage with lcov flgs