Steve Lhomme pushed to branch master at VideoLAN / VLC


Commits:
7eacdcd4 by Steve Lhomme at 2026-02-10T05:56:14+00:00
qt: skip makefile variables in LIBS

The only known variable is $(SUBLIBS) in LIBS which is a variable that doesn't 
exist in the
makefile. It's only found when Qt is compiled as dynamic libraries.
We just skip the variable.

Without this $(SUBLIBS) is passed to the Makefile with the other libs.
This is fine with autotools which ignores the undefined variable.
But meson doesn't like it.

Ref. #29585

- - - - -


1 changed file:

- modules/gui/qt/scripts/static_dirs.py


Changes:

=====================================
modules/gui/qt/scripts/static_dirs.py
=====================================
@@ -105,6 +105,8 @@ if __name__ == "__main__":
                 for lib in l:
                     if lib == '':
                         continue
+                    if lib == '$(SUBLIBS)':
+                        continue
                     if lib.startswith('-l'):
                         result += ' ' + lib
                     elif lib.endswith('.so') or lib.endswith('.a'):



View it on GitLab: 
https://code.videolan.org/videolan/vlc/-/commit/7eacdcd4c14aefd74d77bb68953bd66ec040a5d8

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


VideoLAN code repository instance
_______________________________________________
vlc-commits mailing list
[email protected]
https://mailman.videolan.org/listinfo/vlc-commits

Reply via email to