Fix inverted logic in ifeq statement

This commit is contained in:
John Paul Adrian Glaubitz 2018-09-12 10:42:46 +02:00
parent 3e29ccee3a
commit 6446585e7d
2 changed files with 10 additions and 2 deletions

8
debian/changelog vendored
View File

@ -1,3 +1,11 @@
llvm-toolchain-7 (1:7~+rc3-2) UNRELEASED; urgency=medium
[ John Paul Adrian Glaubitz ]
* Fix inverted logic in ifeq statement for POLLY_ENABLE
and OPENMP_ENABLE (Closes: #908646)
-- John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de> Wed, 12 Sep 2018 10:40:28 +0200
llvm-toolchain-7 (1:7~+rc3-1) unstable; urgency=medium
[ John Paul Adrian Glaubitz ]

4
debian/rules vendored
View File

@ -107,13 +107,13 @@ endif
# Enable polly (or not)
POLLY_ENABLE=yes
ifeq (,$(filter-out $(DEB_HOST_ARCH), powerpc powerpcspe s390x))
ifneq (,$(filter $(DEB_HOST_ARCH), powerpc powerpcspe s390x))
POLLY_ENABLE=no
endif
# Enable openmp (or not)
OPENMP_ENABLE=yes
ifeq (,$(filter-out $(DEB_HOST_ARCH), powerpc powerpcspe riscv64 sparc64 s390x))
ifneq (,$(filter $(DEB_HOST_ARCH), powerpc powerpcspe riscv64 sparc64 s390x))
OPENMP_ENABLE=no
endif