cpprest: Fix build failure with gcc 8

The workaround for gcc 9 broke building with gcc 8:
     cc1plus: error: -Werror=deprecated-copy: no option -Wdeprecated-copy
     cc1plus: error: -Werror=redundant-move: no option -Wredundant-move
     ninja: build stopped: subcommand failed.

-Werror is often problematic in distribution builds,
disable it globally and permanently.

Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
Adrian Bunk 2019-07-02 19:35:31 +03:00 committed by Khem Raj
parent 4e6eb595c0
commit 3a4dfcce5d

View File

@ -18,6 +18,4 @@ S = "${WORKDIR}/git"
inherit cmake pkgconfig
# Temporary until https://github.com/Microsoft/cpprestsdk/issues/1099
# is fixed properly
CXXFLAGS += "-Wno-error=deprecated-copy -Wno-error=redundant-move"
CXXFLAGS += "-Wno-error"