From 889b6423b78bcde8af81d68a3fabcdd019181de4 Mon Sep 17 00:00:00 2001 From: Alexander Couzens Date: Wed, 12 Dec 2018 16:10:42 +0100 Subject: tools: migrate from squashfs4 to squashfskit4 squashfskit is a fork of the squashfs-tools. squashfskit creates reproducible filesystems and includes many of the distro patches. Signed-off-by: Alexander Couzens Tested-by: Paul Spooren --- .../patches/110-allow_static_liblzma.patch | 30 ---------------------- 1 file changed, 30 deletions(-) delete mode 100644 tools/squashfs4/patches/110-allow_static_liblzma.patch (limited to 'tools/squashfs4/patches/110-allow_static_liblzma.patch') diff --git a/tools/squashfs4/patches/110-allow_static_liblzma.patch b/tools/squashfs4/patches/110-allow_static_liblzma.patch deleted file mode 100644 index 9a3a744184..0000000000 --- a/tools/squashfs4/patches/110-allow_static_liblzma.patch +++ /dev/null @@ -1,30 +0,0 @@ ---- a/squashfs-tools/Makefile -+++ b/squashfs-tools/Makefile -@@ -129,7 +129,6 @@ ifeq ($(LZMA_XZ_SUPPORT),1) - CFLAGS += -DLZMA_SUPPORT - MKSQUASHFS_OBJS += lzma_xz_wrapper.o - UNSQUASHFS_OBJS += lzma_xz_wrapper.o --LIBS += -llzma - COMPRESSORS += lzma - endif - -@@ -137,10 +136,18 @@ ifeq ($(XZ_SUPPORT),1) - CFLAGS += -DXZ_SUPPORT - MKSQUASHFS_OBJS += xz_wrapper.o - UNSQUASHFS_OBJS += xz_wrapper.o --LIBS += -llzma - COMPRESSORS += xz - endif - -+ifneq ($(LZMA_XZ_SUPPORT)$(XZ_SUPPORT),) -+ifneq ($(LZMA_LIB),) -+MKSQUASHFS_OBJS += $(LZMA_LIB) -+UNSQUASHFS_OBJS += $(LZMA_LIB) -+else -+LIBS += -llzma -+endif -+endif -+ - ifeq ($(LZO_SUPPORT),1) - CFLAGS += -DLZO_SUPPORT - ifdef LZO_DIR -- cgit v1.2.3