memkind: conflicts with jemalloc (#30070)

This commit is contained in:
Erik Schnetter 2022-05-10 01:41:01 -04:00 committed by GitHub
parent 2db545ffdc
commit 359229f5f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -38,6 +38,10 @@ class Memkind(AutotoolsPackage):
depends_on('m4', type='build') depends_on('m4', type='build')
depends_on('numactl') depends_on('numactl')
# memkind includes a copy of jemalloc; see
# <https://github.com/memkind/memkind#jemalloc>.
conflicts('jemalloc')
def patch(self): def patch(self):
with open('VERSION', 'w') as version_file: with open('VERSION', 'w') as version_file:
version_file.write('{0}\n'.format(self.version)) version_file.write('{0}\n'.format(self.version))