diff options
author | John Crispin <john@openwrt.org> | 2015-03-21 21:47:48 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2015-03-21 21:47:48 +0000 |
commit | 2e15b9579916cac13d0a5e4343413e65b4056d4c (patch) | |
tree | 6971cf03491e247c360b9b581cbd9c3d368b6450 /package/devel | |
parent | b16cf34c95da1718bd8201eb33d9c9f364ba5548 (diff) | |
download | mtk-20170518-2e15b9579916cac13d0a5e4343413e65b4056d4c.zip mtk-20170518-2e15b9579916cac13d0a5e4343413e65b4056d4c.tar.gz mtk-20170518-2e15b9579916cac13d0a5e4343413e65b4056d4c.tar.bz2 |
perf: don't error on warnings
There are some places where there is a redundant declaration of
strlcpy() that prevents building perf otherwise.
Signed-off-by: John Szakmeister <john@szakmeister.net>
SVN-Revision: 44926
Diffstat (limited to 'package/devel')
-rw-r--r-- | package/devel/perf/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/devel/perf/Makefile b/package/devel/perf/Makefile index 7cf504c..1e87424 100644 --- a/package/devel/perf/Makefile +++ b/package/devel/perf/Makefile @@ -55,6 +55,7 @@ MAKE_FLAGS = \ LD="$(TARGET_CROSS)ld" \ CFLAGS="$(TARGET_CFLAGS) $(TARGET_CPPFLAGS)" \ LDFLAGS="$(TARGET_LDFLAGS)" \ + WERROR=0 \ V=1 \ prefix=/usr |