doc/meson.build: add single quote for env

Meson trigger an error due to missing sigle quote for env:

efl-1.24.3/doc/meson.build:114:2: ERROR: Unknown variable "env"

Signed-off-by: Romain Naour <romain.naour@gmail.com>
This commit is contained in:
Romain Naour 2020-08-01 02:31:07 +02:00 committed by Stefan Schmidt
parent f9ade56cf8
commit 25a1ba9ae4
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ foreach text_filter_property : text_filter_properties
doc_target += custom_target('preview_text_filters_'+name,
command: [
env, 'EFL_RUN_IN_TREE=1',
'env', 'EFL_RUN_IN_TREE=1',
'EFL_EVAS_FILTER_LUA_PREFIX=' + join_paths(meson.source_root(), 'src', 'lib', 'evas'),
preview_text_filter.full_path(), text, filter_code.stdout(), '@OUTPUT@', font, size
],