From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from vms173019pub.verizon.net (vms173019pub.verizon.net [206.46.173.19]) by mail.openembedded.org (Postfix) with ESMTP id D274560043 for ; Thu, 27 Aug 2015 14:15:45 +0000 (UTC) Received: from gandalf.denix.org ([108.51.169.48]) by vms173019.mailsrvcs.net (Oracle Communications Messaging Server 7.0.5.32.0 64bit (built Jul 16 2014)) with ESMTPSA id <0NTQ000XZVLMQL70@vms173019.mailsrvcs.net> for openembedded-devel@lists.openembedded.org; Thu, 27 Aug 2015 09:15:32 -0500 (CDT) X-CMAE-Score: 0 X-CMAE-Analysis: v=2.1 cv=Nc0brD34 c=1 sm=1 tr=0 a=x3PDphkivVtATbYodTxRAw==:117 a=0gcC27t9AAAA:8 a=oR5dmqMzAAAA:8 a=XYJHFtupD_QA:10 a=-9mUelKeXuEA:10 a=kj9zAlcOel0A:10 a=uRRa74qj2VoA:10 a=pGLkceISAAAA:8 a=Q4-j1AaZAAAA:8 a=VylFAymO2vud7gMRCmYA:9 a=0bXxn9q0MV6snEgNplNhOjQmxlI=:19 a=CjuIK1q_8ugA:10 Received: by gandalf.denix.org (Postfix, from userid 1000) id 53F0E161BB4; Thu, 27 Aug 2015 10:15:22 -0400 (EDT) Date: Thu, 27 Aug 2015 10:15:22 -0400 From: Denys Dmytriyenko To: openembedded-devel@lists.openembedded.org Message-id: <20150827141522.GP26375@denix.org> References: <1440332209-8802-1-git-send-email-net147@gmail.com> MIME-version: 1.0 In-reply-to: <1440332209-8802-1-git-send-email-net147@gmail.com> User-Agent: Mutt/1.5.20 (2009-06-14) Subject: Re: [meta-qt5][PATCH] qtbase: replace host paths with qmake built-in properties in qconfig.pri X-BeenThere: openembedded-devel@lists.openembedded.org X-Mailman-Version: 2.1.12 Precedence: list Reply-To: openembedded-devel@lists.openembedded.org List-Id: Using the OpenEmbedded metadata to build Distributions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Aug 2015 14:15:45 -0000 Content-type: text/plain; charset=us-ascii Content-disposition: inline This seems to cause a build issue in qtwebkit and qtwebengine as well. It manifests in not being able to find glib.h or gio/gio.h headers. Khem, Martin and I are still discussing this on IRC, but I propose to revert this commit until it's tested better for all modules. -- Denys On Sun, Aug 23, 2015 at 10:16:49PM +1000, Jonathan Liu wrote: > This avoids qconfig.pri in the Qt SDK incorrectly including paths from > the build host that may not exist on the SDK host. As the paths are > now correct, qmake can correctly detect system include paths and use > -isystem instead of -I for Qt's include directories which allows the > suppression of warnings from library headers when building Qt > applications. > > Signed-off-by: Jonathan Liu > --- > recipes-qt/qt5/qtbase_git.bb | 5 +++++ > 1 file changed, 5 insertions(+) > > diff --git a/recipes-qt/qt5/qtbase_git.bb b/recipes-qt/qt5/qtbase_git.bb > index ae63150..324a115 100644 > --- a/recipes-qt/qt5/qtbase_git.bb > +++ b/recipes-qt/qt5/qtbase_git.bb > @@ -234,6 +234,11 @@ do_install_append() { > # Remove macx-ios-clang directory because /usr/lib/qt5/mkspecs/macx-ios-clang/rename_main.sh:#!/bin/bash > # triggers QA Issue: qtbase-mkspecs requires /bin/bash, but no providers in its RDEPENDS [file-rdeps] > rm -rf ${D}/${OE_QMAKE_PATH_QT_ARCHDATA}/mkspecs/macx-ios-clang > + > + # Replace host paths with qmake built-in properties > + sed -i -e 's| ${STAGING_DIR_NATIVE}| $$[QT_HOST_PREFIX]|g' \ > + -e 's| ${STAGING_DIR_HOST}| $$[QT_INSTALL_PREFIX]|g' \ > + ${D}/${OE_QMAKE_PATH_QT_ARCHDATA}/mkspecs/qconfig.pri > } > > PACKAGES =. " \ > -- > 2.5.0 > > -- > _______________________________________________ > Openembedded-devel mailing list > Openembedded-devel@lists.openembedded.org > http://lists.openembedded.org/mailman/listinfo/openembedded-devel