diff mbox series

qt5location: fix build failure due to missing qt5base gui dependency

Message ID 20180905085622.89013-1-giulio.benetti@micronovasrl.com
State Superseded, archived
Headers show
Series qt5location: fix build failure due to missing qt5base gui dependency | expand

Commit Message

Giulio Benetti Sept. 5, 2018, 8:56 a.m. UTC
qt5location fails to build due to missing Qt5 Gui module.
In configure.json features.opengl is referred, but it is available only
if qt5base gui submodule is built.

Add BR2_PACKAGE_QT5BASE_GUI to qt5location Config.in to assure gui
submodule is built before qt5location.

Signed-off-by: Giulio Benetti <giulio.benetti@micronovasrl.com>
---
 package/qt5/qt5location/Config.in | 1 +
 1 file changed, 1 insertion(+)

Comments

Giulio Benetti Sept. 5, 2018, 8:57 a.m. UTC | #1
Hello,

Il 05/09/2018 10:56, Giulio Benetti ha scritto:
> qt5location fails to build due to missing Qt5 Gui module.
> In configure.json features.opengl is referred, but it is available only
> if qt5base gui submodule is built.
> 
> Add BR2_PACKAGE_QT5BASE_GUI to qt5location Config.in to assure gui
> submodule is built before qt5location.
> 
> Signed-off-by: Giulio Benetti <giulio.benetti@micronovasrl.com>
> ---
>   package/qt5/qt5location/Config.in | 1 +
>   1 file changed, 1 insertion(+)
> 
> diff --git a/package/qt5/qt5location/Config.in b/package/qt5/qt5location/Config.in
> index e1778182a0..7c39979eff 100644
> --- a/package/qt5/qt5location/Config.in
> +++ b/package/qt5/qt5location/Config.in
> @@ -1,6 +1,7 @@
>   config BR2_PACKAGE_QT5LOCATION
>   	bool "qt5location"
>   	select BR2_PACKAGE_QT5BASE
> +	select BR2_PACKAGE_QT5BASE_GUI
>   	help
>   	  Qt is a cross-platform application and UI framework for
>   	  developers using C++.
> 

Sorry
Fixes: list is missing in commit log.
I resend with it in v2.

Giulio
diff mbox series

Patch

diff --git a/package/qt5/qt5location/Config.in b/package/qt5/qt5location/Config.in
index e1778182a0..7c39979eff 100644
--- a/package/qt5/qt5location/Config.in
+++ b/package/qt5/qt5location/Config.in
@@ -1,6 +1,7 @@ 
 config BR2_PACKAGE_QT5LOCATION
 	bool "qt5location"
 	select BR2_PACKAGE_QT5BASE
+	select BR2_PACKAGE_QT5BASE_GUI
 	help
 	  Qt is a cross-platform application and UI framework for
 	  developers using C++.