[vlc-commits] [Git][videolan/vlc][master] 2 commits: extras/tools: build xz before tar
Jean-Baptiste Kempf (@jbk)
gitlab at videolan.org
Wed May 8 11:56:59 UTC 2024
Jean-Baptiste Kempf pushed to branch master at VideoLAN / VLC
Commits:
ee9ea365 by Steve Lhomme at 2024-05-08T11:17:11+00:00
extras/tools: build xz before tar
The reason we build tar is because it's missing xz support.
- - - - -
46c57f4d by Steve Lhomme at 2024-05-08T11:17:11+00:00
extras/tools: build tar with xz support before unpacking tar.xz files
- - - - -
1 changed file:
- extras/tools/tools.mak
Changes:
=====================================
extras/tools/tools.mak
=====================================
@@ -92,7 +92,7 @@ DISTCLEAN_PKG += cmake-$(CMAKE_VERSION).tar.gz
help2man-$(HELP2MAN_VERSION).tar.xz:
$(call download_pkg,$(HELP2MAN_URL),help2man)
-help2man: help2man-$(HELP2MAN_VERSION).tar.xz
+help2man: help2man-$(HELP2MAN_VERSION).tar.xz .xz .tar
$(UNPACK)
$(MOVE)
@@ -140,7 +140,7 @@ tar: tar-$(TAR_VERSION).tar.bz2
$(UNPACK)
$(MOVE)
-.buildtar: tar
+.buildtar: .xz tar
(cd $<; ./configure --prefix=$(PREFIX) && $(MAKE) && $(MAKE) install)
touch $@
@@ -280,7 +280,7 @@ CLEAN_FILE += .buildant
bison-$(BISON_VERSION).tar.xz:
$(call download_pkg,$(BISON_URL),bison)
-bison: bison-$(BISON_VERSION).tar.xz
+bison: bison-$(BISON_VERSION).tar.xz .xz .tar
$(UNPACK)
$(MOVE)
View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/90dc0a023f6ceee591f6464367efae65f2ccf6e7...46c57f4dbf811fe92b8879f3103802d8d5352dce
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/90dc0a023f6ceee591f6464367efae65f2ccf6e7...46c57f4dbf811fe92b8879f3103802d8d5352dce
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