[vlc-commits] [Git][videolan/vlc][master] modules: meson: fix 'link_language' usage

Steve Lhomme (@robUx4) gitlab at videolan.org
Thu Mar 12 09:32:19 UTC 2026



Steve Lhomme pushed to branch master at VideoLAN / VLC


Commits:
4dbf34af by Alexandre Janniaux at 2026-03-12T08:51:34+00:00
modules: meson: fix 'link_language' usage

Without quotes, link_language would be a variable call, which doesn't
exist, so we need quotes.

Typo from af374ba7224ea342fe43443b306eac0a856f8784.

- - - - -


1 changed file:

- modules/meson.build


Changes:

=====================================
modules/meson.build
=====================================
@@ -451,7 +451,7 @@ foreach module : vlc_modules
     kwargs = {}
 
     if module.has_key('link_language')
-        kwargs += { link_language: module.get('link_language') }
+        kwargs += { 'link_language': module.get('link_language') }
     endif
 
     shortname = ''



View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/4dbf34afcbbab26fc05f4df165857bb898e23fc2

-- 
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/4dbf34afcbbab26fc05f4df165857bb898e23fc2
You're receiving this email because of your account on code.videolan.org.


VideoLAN code repository instance


More information about the vlc-commits mailing list