commit 33b52f019e683552e93ea6eb30806b75ee0db7ac
parent 72f770f16b484b80b57935cd7c0833301678def4
Author: Hannu Nyman <hannu.nyman@iki.fi>
Date: Tue, 13 Sep 2016 11:41:49 +0300
Merge pull request #3155 from nxhack/logrotate-nonnull-compare
logrotate: Fix nonnull-compare compile error
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/utils/logrotate/Makefile b/utils/logrotate/Makefile
@@ -38,7 +38,7 @@ define Package/logrotate/conffiles
/etc/logrotate.conf
endef
-EXTRA_CFLAGS += $(TARGET_CPPFLAGS)
+EXTRA_CFLAGS += $(TARGET_CPPFLAGS) -Wno-nonnull-compare
EXTRA_LDFLAGS += $(TARGET_LDFLAGS)
define Build/Compile