diff options
author | Mike Banon <mikebdp2@gmail.com> | 2020-12-13 23:01:56 +0300 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2021-02-07 22:00:23 +0000 |
commit | f238ead6f17952ceb31d38dfec5efac66a1ef10e (patch) | |
tree | b854b773c9520c6e468bb26d93b9354975984d23 /payloads/external/tint/Makefile | |
parent | 94eea6fe16e2b868f892aafd7c5ed5042dc35c7f (diff) |
tint: update the archive from 0.04+nmu1 to 0.05
Old archive is not available anymore. The tint sources inside the new
archive are the same (something changed in a debian subdirectory but
we aren't using it), so a libpayload_tint.patch is still valid.
Signed-off-by: Mike Banon <mikebdp2@gmail.com>
Change-Id: If556fac7d1d8379a022f59ed6aee1450b7bc5aa7
Reviewed-on: https://review.coreboot.org/c/coreboot/+/48616
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'payloads/external/tint/Makefile')
-rw-r--r-- | payloads/external/tint/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/payloads/external/tint/Makefile b/payloads/external/tint/Makefile index 9473c02c57..e57132c8e3 100644 --- a/payloads/external/tint/Makefile +++ b/payloads/external/tint/Makefile @@ -1,5 +1,5 @@ -project_url=https://mirror.fsf.org/trisquel/pool/main/t/tint/tint_0.04+nmu1.tar.gz -archive_name=tint_0.04+nmu1.tar.gz +project_url=https://mirror.fsf.org/trisquel/pool/main/t/tint/tint_0.05.tar.xz +archive_name=tint_0.05.tar.xz unexport KCONFIG_AUTOHEADER unexport KCONFIG_AUTOCONFIG @@ -26,7 +26,7 @@ download: test -d tint || { wget $(project_url); \ tar -xvf $(archive_name); \ rm $(archive_name); \ - mv tint-0.04+nmu1 tint; } + mv tint-0.05 tint; } clean: test -d tint && $(MAKE) -C tint clean || exit 0 |