From 7070857b47373dafc1ab93fadec79243da589a1a Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Sat, 4 May 2019 20:47:39 +0200 Subject: Rename lzma compressor to xz, zlib compressor to gzip Stick to the terminology that SquashFS uses. SquashFS uses "lzma" to refere to lzma1, "xz" to refere to lzma2 and confusingly "gzip" to refere to raw zlib deflate. We can avoid a lot of confusion by _consistently_ using the same terminology. Signed-off-by: David Oberhollenzer --- mkfs/Makemodule.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mkfs') diff --git a/mkfs/Makemodule.am b/mkfs/Makemodule.am index fb56fcf..3914e71 100644 --- a/mkfs/Makemodule.am +++ b/mkfs/Makemodule.am @@ -2,11 +2,11 @@ mksquashfs_SOURCES = mkfs/mksquashfs.c mkfs/mksquashfs.h mkfs/block.c mksquashfs_SOURCES += mkfs/options.c mkfs/meta.c mksquashfs_LDADD = libsquashfs.a libfstree.a libcompress.a libutil.a -if WITH_LZMA +if WITH_XZ mksquashfs_LDADD += $(XZ_LIBS) endif -if WITH_ZLIB +if WITH_GZIP mksquashfs_LDADD += $(ZLIB_LIBS) endif -- cgit v1.2.3