Remove extraneous comma in Makefile

Signed-off-by: Gabriel Ravier <gabravier@gmail.com>
This commit is contained in:
Gabriel Ravier 2019-11-01 13:59:31 +01:00
parent d0e59844e4
commit bc448d0de6

View file

@ -48,7 +48,7 @@ ifeq ($(WARNINGS), 1)
endif
ifeq ($(ALL_WARNINGS), 1)
ifneq ($(findstring clang,$(CXX),))
ifneq ($(findstring clang,$(CXX)))
# Use clang-specific flag -Weverything
CXXFLAGS += -Weverything
else