From e213b377c70a0edeebd5f07a08bce82d79f8a75a Mon Sep 17 00:00:00 2001 From: Gianfranco Costamagna Date: Mon, 7 Mar 2016 12:45:14 +0000 Subject: [PATCH] Fix polly checks --- debian/rules | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/debian/rules b/debian/rules index 25f8de5f..66878a91 100755 --- a/debian/rules +++ b/debian/rules @@ -77,8 +77,9 @@ endif endif # Enable polly (or not) -ifeq (,$(filter $(DEB_HOST_ARCH), powerpc)) - POLLY_ENABLE=yes +POLLY_ENABLE=yes +ifeq (,$(filter-out $(DEB_HOST_ARCH), powerpc s390x)) + POLLY_ENABLE=no endif ifneq (,$(filter codecoverage,$(DEB_BUILD_OPTIONS)))