[vlc-commits] [Git][videolan/vlc][master] 2 commits: package/win32: build.sh: don't generate -debug.zip package
Steve Lhomme (@robUx4)
gitlab at videolan.org
Mon Oct 24 06:22:49 UTC 2022
Steve Lhomme pushed to branch master at VideoLAN / VLC
Commits:
04d7d5c3 by Steve Lhomme at 2022-10-24T06:02:54+00:00
package/win32: build.sh: don't generate -debug.zip package
We don't need 2 variants of the same thing. The zip version is twice bigger
than the 7z. This is a developer package, they can deal with 7z files.
- - - - -
93895d57 by Steve Lhomme at 2022-10-24T06:02:54+00:00
package/win32: build.sh: generate the built 7z+zip+msi in parallel
But we need to do the debug package first as the other will strip debug
information that is needed in the debug packages.
- - - - -
1 changed file:
- extras/package/win32/build.sh
Changes:
=====================================
extras/package/win32/build.sh
=====================================
@@ -411,7 +411,8 @@ info "Compiling"
make -j$JOBS
if [ "$INSTALLER" = "n" ]; then
-make package-win32-debug package-win32 package-msi
+make package-win32-debug-7zip
+make -j$JOBS package-win32 package-msi
elif [ "$INSTALLER" = "r" ]; then
make package-win32
elif [ "$INSTALLER" = "u" ]; then
View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/7e3d4bf059a853ae69ed6ae49c1f5e6dba61df5c...93895d57d08656a5f64970c89d8f61b290cbf38f
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/7e3d4bf059a853ae69ed6ae49c1f5e6dba61df5c...93895d57d08656a5f64970c89d8f61b290cbf38f
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