From 3f16487633f893d0d2674481acdb55849fe00b1e Mon Sep 17 00:00:00 2001 From: Anders Darander Date: Wed, 23 Apr 2014 13:24:33 +0200 Subject: breakpad.bbclass: set includedir in CXXFLAGS Previously this was only set in CFLAGS. An build issue was discovered while convering in internal application from Qt4 to Qt5. As a result of this, the required header files were no longer found, until we also set CXXFLAGS. Signed-off-by: Anders Darander Signed-off-by: Martin Jansa --- meta-oe/classes/breakpad.bbclass | 1 + 1 file changed, 1 insertion(+) (limited to 'meta-oe/classes') diff --git a/meta-oe/classes/breakpad.bbclass b/meta-oe/classes/breakpad.bbclass index 8c49ca7d27..e4d6808a60 100644 --- a/meta-oe/classes/breakpad.bbclass +++ b/meta-oe/classes/breakpad.bbclass @@ -5,6 +5,7 @@ DEPENDS += "breakpad breakpad-native" CFLAGS += "-I${STAGING_DIR_TARGET}${includedir}/breakpad " +CXXFLAGS += "-I${STAGING_DIR_TARGET}${includedir}/breakpad " BREAKPAD_BIN ?= "" -- cgit 1.2.3-korg