[vlc-commits] [Git][videolan/vlc][master] contrib: don't show unzip'ed files in non verbose mode

Steve Lhomme (@robUx4) gitlab at videolan.org
Wed Oct 15 17:33:23 UTC 2025



Steve Lhomme pushed to branch master at VideoLAN / VLC


Commits:
d11f22f7 by Steve Lhomme at 2025-10-15T16:45:25+00:00
contrib: don't show unzip'ed files in non verbose mode

This avoids being bombarded with logs when building.

Similar to 0a555fa1ac6db47923c9db03faa8d49393f571ec for unzip.

- - - - -


1 changed file:

- contrib/src/main.mak


Changes:

=====================================
contrib/src/main.mak
=====================================
@@ -433,6 +433,8 @@ check_githash = \
 
 ifeq ($(V),1)
 TAR_VERBOSE := v
+else
+ZIP_QUIET := -q
 endif
 
 checksum = \
@@ -446,7 +448,7 @@ UNPACK = $(RM) -R $@ \
 	$(foreach f,$(filter %.tar.gz %.tgz,$^), && tar $(TAR_VERBOSE)xzfo $(f)) \
 	$(foreach f,$(filter %.tar.bz2,$^), && tar $(TAR_VERBOSE)xjfo $(f)) \
 	$(foreach f,$(filter %.tar.xz,$^), && tar $(TAR_VERBOSE)xJfo $(f)) \
-	$(foreach f,$(filter %.zip,$^), && unzip $(f) $(UNZIP_PARAMS))
+	$(foreach f,$(filter %.zip,$^), && unzip $(ZIP_QUIET) $(f) $(UNZIP_PARAMS))
 UNPACK_DIR = $(patsubst %.tar,%,$(basename $(notdir $<)))
 APPLY = (cd $(UNPACK_DIR) && patch -fp1) <
 pkg_static = (cd $(UNPACK_DIR) && $(SRC_BUILT)/pkg-static.sh $(1))



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

-- 
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/d11f22f763a3601c018eb096556db13712b5641b
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