From: George Lu Date: Tue, 5 Jun 2018 00:19:06 +0000 (-0700) Subject: Fix Typos X-Git-Tag: v1.3.5~3^2~29^2~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b3ef3148302231312c5582862cd89d5c16f0adb7;p=thirdparty%2Fzstd.git Fix Typos --- diff --git a/lib/Makefile b/lib/Makefile index 00a51fdbf..701cf7e9f 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -40,14 +40,15 @@ ZSTD_LIB_COMPRESSION ?= 1 ZSTD_LIB_DECOMPRESSION ?= 1 ZSTD_LIB_DICTBUILDER ?= 1 ZSTD_LIB_DEPRECATED ?= 1 + ifeq ($(ZSTD_LIB_COMPRESSION), 0) ZSTD_LIB_DICTBUILDER = 0 - ZSTD_DEPRECATED = 0 + ZSTD_LIB_DEPRECATED = 0 endif ifeq ($(ZSTD_LIB_DECOMPRESSION), 0) ZSTD_LEGACY_SUPPORT = 0 - ZSTD_DEPRECATED = 0 + ZSTD_LIB_DEPRECATED = 0 endif ifneq ($(ZSTD_LIB_COMPRESSION), 0) @@ -58,12 +59,12 @@ ifneq ($(ZSTD_LIB_DECOMPRESSION), 0) ZSTD_FILES += $(ZSTDDECOMP_FILES) endif -ifneq ($(ZSTD_DEPRECATED), 0) - ZSTD_FILE += $(ZDEPR_FILES) +ifneq ($(ZSTD_LIB_DEPRECATED), 0) + ZSTD_FILES += $(ZDEPR_FILES) endif ifneq ($(ZSTD_LIB_DICTBUILDER), 0) - ZSTD_FILE += $(ZDICT_FILES) + ZSTD_FILES += $(ZDICT_FILES) endif ifneq ($(ZSTD_LEGACY_SUPPORT), 0)