From e26c3a02dfa2e071f8a70ee192cd11f2434c6b64 Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Wed, 29 Jun 2022 11:32:06 +0200 Subject: [PATCH] build: fix enabled GBM when allocators=auto and auto_features=disabled --- render/allocator/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/render/allocator/meson.build b/render/allocator/meson.build index f8e452df..97c5a1c3 100644 --- a/render/allocator/meson.build +++ b/render/allocator/meson.build @@ -1,7 +1,7 @@ allocators = get_option('allocators') if 'auto' in allocators and get_option('auto_features').enabled() allocators = ['gbm'] -elif 'auto' in renderers and get_option('auto_features').disabled() +elif 'auto' in allocators and get_option('auto_features').disabled() allocators = [] endif