* [meta-qt5][PATCH] qtbase-native: create empty oe-device-extra.pri
@ 2017-03-23 9:46 Gordan Markuš
2017-03-30 9:38 ` Martin Jansa
0 siblings, 1 reply; 3+ messages in thread
From: Gordan Markuš @ 2017-03-23 9:46 UTC (permalink / raw)
To: openembedded-devel; +Cc: Gordan Markuš
Suppress multiple occurrences of the same warning while configuring
and compiling qtbase-native and nativesdk-qtbase.
WARNING: Unable to find file git/mkspecs/linux-oe-g++/../oe-device-extra.pri
Signed-off-by: Gordan Markuš <gordan.markus@pelagicore.com>
---
recipes-qt/qt5/qtbase-native_git.bb | 3 +++
1 file changed, 3 insertions(+)
diff --git a/recipes-qt/qt5/qtbase-native_git.bb b/recipes-qt/qt5/qtbase-native_git.bb
index c013029..d40a751 100644
--- a/recipes-qt/qt5/qtbase-native_git.bb
+++ b/recipes-qt/qt5/qtbase-native_git.bb
@@ -83,6 +83,9 @@ PACKAGECONFIG_CONFARGS = " \
export OE_QMAKE_QTCONF_PATH = "foodummy"
do_configure_prepend() {
+ # Avoid qmake error "Cannot read [...]/usr/lib/qt5/mkspecs/oe-device-extra.pri: No such file or directory"
+ touch ${S}/${OE_QMAKE_PATH_QT_ARCHDATA}/mkspecs/oe-device-extra.pri
+
MAKEFLAGS="${PARALLEL_MAKE}" ${S}/configure -opensource -confirm-license ${PACKAGECONFIG_CONFARGS} || die "Configuring qt failed. PACKAGECONFIG_CONFARGS was ${PACKAGECONFIG_CONFARGS}"
}
--
2.9.3
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [meta-qt5][PATCH] qtbase-native: create empty oe-device-extra.pri
2017-03-23 9:46 [meta-qt5][PATCH] qtbase-native: create empty oe-device-extra.pri Gordan Markuš
@ 2017-03-30 9:38 ` Martin Jansa
2017-03-30 15:04 ` Gordan Markuš
0 siblings, 1 reply; 3+ messages in thread
From: Martin Jansa @ 2017-03-30 9:38 UTC (permalink / raw)
To: Gordan Markuš; +Cc: openembedded-devel
it looks like the directory doesn't exist:
http://errors.yoctoproject.org/Errors/Details/138489/
On Thu, Mar 23, 2017 at 10:46 AM, Gordan Markuš <
gordan.markus@pelagicore.com> wrote:
> Suppress multiple occurrences of the same warning while configuring
> and compiling qtbase-native and nativesdk-qtbase.
>
> WARNING: Unable to find file git/mkspecs/linux-oe-g++/../
> oe-device-extra.pri
> Signed-off-by: Gordan Markuš <gordan.markus@pelagicore.com>
> ---
> recipes-qt/qt5/qtbase-native_git.bb | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/recipes-qt/qt5/qtbase-native_git.bb b/recipes-qt/qt5/qtbase-
> native_git.bb
> index c013029..d40a751 100644
> --- a/recipes-qt/qt5/qtbase-native_git.bb
> +++ b/recipes-qt/qt5/qtbase-native_git.bb
> @@ -83,6 +83,9 @@ PACKAGECONFIG_CONFARGS = " \
> export OE_QMAKE_QTCONF_PATH = "foodummy"
>
> do_configure_prepend() {
> + # Avoid qmake error "Cannot read [...]/usr/lib/qt5/mkspecs/oe-device-extra.pri:
> No such file or directory"
> + touch ${S}/${OE_QMAKE_PATH_QT_ARCHDATA}/mkspecs/oe-device-extra.pri
> +
> MAKEFLAGS="${PARALLEL_MAKE}" ${S}/configure -opensource
> -confirm-license ${PACKAGECONFIG_CONFARGS} || die "Configuring qt failed.
> PACKAGECONFIG_CONFARGS was ${PACKAGECONFIG_CONFARGS}"
> }
>
> --
> 2.9.3
>
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [meta-qt5][PATCH] qtbase-native: create empty oe-device-extra.pri
2017-03-30 9:38 ` Martin Jansa
@ 2017-03-30 15:04 ` Gordan Markuš
0 siblings, 0 replies; 3+ messages in thread
From: Gordan Markuš @ 2017-03-30 15:04 UTC (permalink / raw)
To: openembedded-devel
Sorry about that Martin, I've made a copy/paste mistake.
Will post another version of the patch.
On Thu, 2017-03-30 at 11:38 +0200, Martin Jansa wrote:
> it looks like the directory doesn't exist:
>
> http://errors.yoctoproject.org/Errors/Details/138489/
>
> On Thu, Mar 23, 2017 at 10:46 AM, Gordan Markuš <
> gordan.markus@pelagicore.com> wrote:
>
> > Suppress multiple occurrences of the same warning while configuring
> > and compiling qtbase-native and nativesdk-qtbase.
> >
> > WARNING: Unable to find file git/mkspecs/linux-oe-g++/../
> > oe-device-extra.pri
> > Signed-off-by: Gordan Markuš <gordan.markus@pelagicore.com>
> > ---
> > recipes-qt/qt5/qtbase-native_git.bb | 3 +++
> > 1 file changed, 3 insertions(+)
> >
> > diff --git a/recipes-qt/qt5/qtbase-native_git.bb b/recipes-
> > qt/qt5/qtbase-
> > native_git.bb
> > index c013029..d40a751 100644
> > --- a/recipes-qt/qt5/qtbase-native_git.bb
> > +++ b/recipes-qt/qt5/qtbase-native_git.bb
> > @@ -83,6 +83,9 @@ PACKAGECONFIG_CONFARGS = " \
> > export OE_QMAKE_QTCONF_PATH = "foodummy"
> >
> > do_configure_prepend() {
> > + # Avoid qmake error "Cannot read [...]/usr/lib/qt5/mkspecs/oe-
> > device-extra.pri:
> > No such file or directory"
> > + touch ${S}/${OE_QMAKE_PATH_QT_ARCHDATA}/mkspecs/oe-device-
> > extra.pri
> > +
> > MAKEFLAGS="${PARALLEL_MAKE}" ${S}/configure -opensource
> > -confirm-license ${PACKAGECONFIG_CONFARGS} || die "Configuring qt
> > failed.
> > PACKAGECONFIG_CONFARGS was ${PACKAGECONFIG_CONFARGS}"
> > }
> >
> > --
> > 2.9.3
> >
> > --
> > _______________________________________________
> > Openembedded-devel mailing list
> > Openembedded-devel@lists.openembedded.org
> > http://lists.openembedded.org/mailman/listinfo/openembedded-devel
> >
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2017-03-30 15:04 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-03-23 9:46 [meta-qt5][PATCH] qtbase-native: create empty oe-device-extra.pri Gordan Markuš
2017-03-30 9:38 ` Martin Jansa
2017-03-30 15:04 ` Gordan Markuš
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox