1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 05:32:45 +01:00

pkg/ccn-lite: build with -Wno-format-nonliteral

This commit is contained in:
Joakim Nohlgård 2018-06-15 01:20:42 +02:00 committed by Gaëtan Harter
parent 209050d382
commit 1a1c8f6c2a
No known key found for this signature in database
GPG Key ID: 76DF6BCF1B1F883B

View File

@ -22,3 +22,6 @@ $(TOOLCHAIN_FILE): git-download
$(RIOTTOOLS)/cmake/generate-xcompile-toolchain.sh > $(TOOLCHAIN_FILE)
include $(RIOTBASE)/pkg/pkg.mk
ifneq (,$(filter -Wformat-nonliteral -Wformat=2, $(CFLAGS)))
CFLAGS += -Wno-format-nonliteral
endif