jsoncpp: fix build with GCC < 6.x

Fix after 0bc73f739d.
There is no -Werror=shift-negative-value in GCC 4.9.x.
This commit is contained in:
Boris Pek 2016-05-02 01:55:23 +03:00
parent d8f1d36d71
commit a1cc0195ab
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ $(PKG)_URL := https://github.com/open-source-parsers/jsoncpp/archive/$($(PK
$(PKG)_DEPS := gcc
# workaround for builds with GCC >= 6.x
$(PKG)_CXXFLAGS := -Wno-error=conversion -Wno-error=shift-negative-value
$(PKG)_CXXFLAGS := -Wno-error=conversion -Wno-shift-negative-value
define $(PKG)_UPDATE
$(WGET) -q -O- 'https://github.com/open-source-parsers/jsoncpp/archive/' | \