From 2e5f05871406437411459e7b87e8ac863d306776 Mon Sep 17 00:00:00 2001 From: Steven Dake Date: Thu, 13 Jul 2006 22:02:47 +0000 Subject: [PATCH] Add support for s390 and s390x architectures. git-svn-id: http://svn.fedorahosted.org/svn/corosync/trunk@1120 fd59a12c-fef9-0310-b244-a6a79926bd2f --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index 65465375..80d988b5 100644 --- a/Makefile +++ b/Makefile @@ -45,6 +45,12 @@ LIBDIR=/usr/lib/openais else LIBDIR=/usr/lib64/openais endif +ifeq (s390,$(ARCH)) +LIBDIR=/usr/lib/openais +endif +ifeq (s390x,$(ARCH)) +LIBDIR=/usr/lib64/openais +endif all: (cd lcr; echo ==== `pwd` ===; $(MAKE) all);