diff options
author | Jari Vetoniemi <mailroxas@gmail.com> | 2019-02-25 09:24:49 +0200 |
---|---|---|
committer | Jari Vetoniemi <mailroxas@gmail.com> | 2019-02-25 09:24:49 +0200 |
commit | a7fa510eacd2699f9beb2b40524ca271e7a36cff (patch) | |
tree | 66a9e5aabc46edb03a3ad7fc07b8b9b7e7341efc | |
parent | 64a58aced869764db527364360e222cb051c3d96 (diff) |
make: use normal WARNING assignment
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5,7 +5,7 @@ pkgconfigdir ?= /lib/pkgconfig MAKEFLAGS += --no-builtin-rules -WARNINGS := -Wall -Wextra -Wpedantic -Wformat=2 -Wstrict-aliasing=3 -Wstrict-overflow=5 -Wstack-usage=64000 \ +WARNINGS = -Wall -Wextra -Wpedantic -Wformat=2 -Wstrict-aliasing=3 -Wstrict-overflow=5 -Wstack-usage=64000 \ -Wfloat-equal -Wcast-align -Wpointer-arith -Wchar-subscripts -Warray-bounds=2 override CFLAGS ?= -g -O2 $(WARNINGS) |