[oe-commits] Anders Darander : breakpad.bbclass: set includedir in CXXFLAGS

git at git.openembedded.org git at git.openembedded.org
Thu May 1 16:59:11 UTC 2014


Module: meta-openembedded.git
Branch: master-next
Commit: 209f2f6b02333ea36f3cfbcc567d5752c033b06d
URL:    http://git.openembedded.org/?p=meta-openembedded.git&a=commit;h=209f2f6b02333ea36f3cfbcc567d5752c033b06d

Author: Anders Darander <anders at chargestorm.se>
Date:   Wed Apr 23 13:24:33 2014 +0200

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 <anders at chargestorm.se>
Signed-off-by: Martin Jansa <Martin.Jansa at gmail.com>

---

 meta-oe/classes/breakpad.bbclass | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta-oe/classes/breakpad.bbclass b/meta-oe/classes/breakpad.bbclass
index 8c49ca7..e4d6808 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 ?= ""
 



More information about the Openembedded-commits mailing list