summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBoris Pek <tehnick-8@yandex.ru>2016-05-01 22:55:23 (GMT)
committerBoris Pek <tehnick-8@yandex.ru>2016-05-02 10:28:16 (GMT)
commita1cc0195abd91827d347449a52336d0031b48d52 (patch)
tree53db38036dabe97479d699272d4a98510d5e2e26
parentd8f1d36d71519e868b218aae3774c773ec89c199 (diff)
downloadmxe-a1cc0195abd91827d347449a52336d0031b48d52.zip
mxe-a1cc0195abd91827d347449a52336d0031b48d52.tar.gz
mxe-a1cc0195abd91827d347449a52336d0031b48d52.tar.bz2
jsoncpp: fix build with GCC < 6.x
Fix after 0bc73f739d7a8f2bc4e5100da62a0d894cbc9e38. There is no -Werror=shift-negative-value in GCC 4.9.x.
-rw-r--r--src/jsoncpp.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jsoncpp.mk b/src/jsoncpp.mk
index 532d20b..f7ef89a 100644
--- a/src/jsoncpp.mk
+++ b/src/jsoncpp.mk
@@ -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/' | \