From 7e8e0d245f345f6272f9163bcaa802f991957dba Mon Sep 17 00:00:00 2001 From: thomas Date: Tue, 3 Sep 2019 16:54:28 +0200 Subject: [PATCH] squashfs-tools: Enable alternative compressors Having only gzip available might turn into a showstopper. --- squashfs-tools.be0 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/squashfs-tools.be0 b/squashfs-tools.be0 index 03d678938..feabe6f62 100755 --- a/squashfs-tools.be0 +++ b/squashfs-tools.be0 @@ -14,6 +14,10 @@ SRCURL[0]="https://github.com/plougher/squashfs-tools/archive/4.4.tar.gz" mee_build() { cd ${S}/squashfs-tools + sed -i Makefile \ + -e '/^#XZ_SUPPORT/ s/^#//' \ + -e '/^#LZO_SUPPORT/ s/^#//' \ + -e '/^#LZ4_SUPPORT/ s/^#//' make }