aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorame <[email protected]>2025-07-28 21:15:09 -0500
committerame <[email protected]>2025-07-28 21:15:09 -0500
commit3af209e5643ad62005d4c6797dfc51f6b6c2e196 (patch)
tree26eb360e8383f403ebb84a97ec598baa9e51ecd0 /makefile
parent6010eb32beb28b6e911dbbb673bfc7a972ec9ee4 (diff)
remove -Werror because gcc is stupid
Diffstat (limited to 'makefile')
-rw-r--r--makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/makefile b/makefile
index 15094d2..6c33c56 100644
--- a/makefile
+++ b/makefile
@@ -9,7 +9,7 @@ ifeq ($(version),jit)
install_version = 5.1
endif
-CFLAGS := -Wall -Werror -fPIC -DGIT_COMMIT='$(GIT_COMMIT)' `pkg-config --cflags lua$(version)`
+CFLAGS := -Wall -fPIC -DGIT_COMMIT='$(GIT_COMMIT)' `pkg-config --cflags lua$(version)`
LFLAGS := -lm -shared -lcrypto -lssl
LINKER := $(CC)