forked from openwrt/openwrt
-
-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tools: use 'xz' versions of packages
There is a discrepancy between `packages` and `tools` where the same package is essentially downloaded twice due to different extensions. ('gz' vs 'xz'). ``` dl/e2fsprogs-1.47.0.tar.gz dl/e2fsprogs-1.47.0.tar.xz dl/gmp-6.3.0.tar.gz dl/gmp-6.3.0.tar.xz dl/libtool-2.4.7.tar.gz dl/libtool-2.4.7.tar.xz dl/sed-4.9.tar.gz dl/sed-4.9.tar.xz dl/util-linux-2.39.3.tar.gz dl/util-linux-2.39.3.tar.xz dl/zlib-1.3.1.tar.gz dl/zlib-1.3.1.tar.xz dl/zstd-1.5.5.tar.gz dl/zstd-1.5.6.tar.gz ``` Initially I thought this was due to the build needing to compile 'xz' before it could use it, but 'xz' is already an OS build requirement and is already in use by other tool packages. ``` tools/7z/Makefile:PKG_SOURCE:=$(PKG_NAME)$(PKG_SOURCE_VERSION)-src.tar.xz tools/autoconf-archive/Makefile:PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz tools/findutils/Makefile:PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz tools/gengetopt/Makefile:PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz tools/llvm-bpf/Makefile:PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).src.tar.xz tools/mklibs/Makefile:PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).tar.xz tools/sed/Makefile:PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz ``` Signed-off-by: Sean Khan <[email protected]>
- Loading branch information
Showing
6 changed files
with
13 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters