From: Kent Overstreet Date: Wed, 1 Feb 2023 21:27:32 +0000 (-0500) Subject: Makefile: build with -Wno-deprecated-declarations X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=97880a7ce4b7b44e2cafbd993947d3137af45ac6;p=bcachefs-tools-debian Makefile: build with -Wno-deprecated-declarations This fixes a ZSTD warning. Signed-off-by: Kent Overstreet --- diff --git a/Makefile b/Makefile index 00e7b7c..743f6ca 100644 --- a/Makefile +++ b/Makefile @@ -17,6 +17,7 @@ endif CFLAGS+=-std=gnu11 -O2 -g -MMD -Wall -fPIC \ -Wno-pointer-sign \ + -Wno-deprecated-declarations \ -fno-strict-aliasing \ -fno-delete-null-pointer-checks \ -I. -Iinclude -Iraid \