meson.build: remove version check around devenv

Since 01c6fd0a88 the
minimum required meson version is 0.59.0, therefore
there is no need to check if it's at least 0.58.0,
which was needed for the devenv functionality.
This commit is contained in:
Barnabás Pőcze 2022-01-17 08:02:57 +01:00 committed by Wim Taymans
parent a36f902e1d
commit 33fb98fddf

View file

@ -502,7 +502,6 @@ run_target('pw-uninstalled',
'-v@0@'.format(pipewire_version)]
)
if meson.version().version_compare('>=0.58.0')
devenv = environment()
builddir = meson.project_build_root()
@ -525,4 +524,3 @@ if meson.version().version_compare('>=0.58.0')
devenv.set('PW_UNINSTALLED', '1')
meson.add_devenv(devenv)
endif