[vlc-commits] [Git][videolan/vlc][master] package: win32: don't install Qt pdbs if Qt is disabled
Steve Lhomme (@robUx4)
gitlab at videolan.org
Thu Apr 25 09:10:25 UTC 2024
Steve Lhomme pushed to branch master at VideoLAN / VLC
Commits:
ffe24cb6 by Steve Lhomme at 2024-04-25T08:22:29+00:00
package: win32: don't install Qt pdbs if Qt is disabled
- - - - -
1 changed file:
- extras/package/win32/package.mak
Changes:
=====================================
extras/package/win32/package.mak
=====================================
@@ -29,7 +29,9 @@ if ENABLE_PDB
cp lib/.libs/libvlc.pdb '$(DESTDIR)$(bindir)'
cp src/.libs/libvlccore.pdb '$(DESTDIR)$(bindir)'
find '$(DESTDIR)$(libdir)/vlc/plugins' -name "*.dll" -exec sh -c "echo {} | sed -e 's@$(DESTDIR)$(libdir)/vlc/plugins/\(.*\)/\(.*\).dll at modules/.libs/\2.pdb $(DESTDIR)$(libdir)/vlc/plugins/\1@' | xargs -t cp " \;
+if ENABLE_QT
find modules/gui/qt/.libs/ -name "*.pdb" -exec cp {} '$(DESTDIR)$(libdir)/vlc/plugins/gui/' \;
+endif
endif
touch $@
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/ffe24cb69db40ddfbc6cb7d93ea617ff2c8cce35
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/ffe24cb69db40ddfbc6cb7d93ea617ff2c8cce35
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