From 3871fbaacb580e959f0d358cc18a76de6b8fd6a4 Mon Sep 17 00:00:00 2001 From: Patrick Griffis Date: Wed, 11 Mar 2020 11:13:25 -0700 Subject: build: Fix potential undefined variable --- plugins/python/meson.build | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/plugins/python/meson.build b/plugins/python/meson.build index eb762134..5fd7ec2f 100644 --- a/plugins/python/meson.build +++ b/plugins/python/meson.build @@ -3,8 +3,10 @@ if python_opt.startswith('python3') # Python 3.8 introduced a new -embed variant if not python_opt.endswith('-embed') python_dep = dependency(python_opt + '-embed', version: '>= 3.3', required: false) - endif - if not python_dep.found() + if not python_dep.found() + python_dep = dependency(python_opt, version: '>= 3.3') + endif + else python_dep = dependency(python_opt, version: '>= 3.3') endif else -- cgit 1.4.1