mirror of
https://git.proxmox.com/git/llvm-toolchain
synced 2025-08-07 21:49:26 +00:00
Fix inverted logic in ifeq statement
This commit is contained in:
parent
3e29ccee3a
commit
6446585e7d
8
debian/changelog
vendored
8
debian/changelog
vendored
@ -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
|
llvm-toolchain-7 (1:7~+rc3-1) unstable; urgency=medium
|
||||||
|
|
||||||
[ John Paul Adrian Glaubitz ]
|
[ John Paul Adrian Glaubitz ]
|
||||||
|
4
debian/rules
vendored
4
debian/rules
vendored
@ -107,13 +107,13 @@ endif
|
|||||||
|
|
||||||
# Enable polly (or not)
|
# Enable polly (or not)
|
||||||
POLLY_ENABLE=yes
|
POLLY_ENABLE=yes
|
||||||
ifeq (,$(filter-out $(DEB_HOST_ARCH), powerpc powerpcspe s390x))
|
ifneq (,$(filter $(DEB_HOST_ARCH), powerpc powerpcspe s390x))
|
||||||
POLLY_ENABLE=no
|
POLLY_ENABLE=no
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Enable openmp (or not)
|
# Enable openmp (or not)
|
||||||
OPENMP_ENABLE=yes
|
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
|
OPENMP_ENABLE=no
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user