0
0
mirror of https://github.com/rkd77/elinks.git synced 2025-06-30 22:19:29 -04:00

Fix default value for libdomdeps to empty list instead of false

When it was false, meson complained that it shouldn't be a boolean
value, see: https://salsa.debian.org/aelmahmoudy/elinks/-/jobs/6836245/raw
This commit is contained in:
أحمد المحمودي (Ahmed El-Mahmoudy) 2024-12-29 18:14:47 +01:00
parent 2aed70baf5
commit 7bce7c2032

View File

@ -555,7 +555,7 @@ if conf_data.get('CONFIG_ECMASCRIPT_SMJS') or conf_data.get('CONFIG_QUICKJS') or
endif
conf_data.set('CONFIG_LIBDOM', false)
libdomdeps = false
libdomdeps = []
if conf_data.get('CONFIG_ECMASCRIPT_SMJS') or conf_data.get('CONFIG_QUICKJS') or conf_data.get('CONFIG_MUJS')
libdomdeps = dependency('libdom', static: st, version: '>=0.4.2', required: false)