From 218a99d7bc0d18c9fe32bcf1a1272a2ab40fafc4 Mon Sep 17 00:00:00 2001 From: Eskil Abrahamsen Blomfeldt Date: Wed, 14 Apr 2021 11:24:20 +0200 Subject: [PATCH] Remove bogus warning about missing wayland-egl For some reason, we always print a confusing message that the wayland-egl backend is not built when configure is run. The warning is incorrect, and since it is not worth the trouble to find out why it isn't working, we just remove it. Fixes: QTBUG-92925 Change-Id: I01e35f21180249c1ae0db73dc3541365fb2eff41 Reviewed-by: Paul Olav Tvete --- src/plugins/platforms/wayland/configure.cmake | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/plugins/platforms/wayland/configure.cmake b/src/plugins/platforms/wayland/configure.cmake index ba87484be6e..11612d11fec 100644 --- a/src/plugins/platforms/wayland/configure.cmake +++ b/src/plugins/platforms/wayland/configure.cmake @@ -241,8 +241,3 @@ qt_configure_add_summary_entry(ARGS "wayland-client-ivi-shell") qt_configure_add_summary_entry(ARGS "wayland-client-wl-shell") qt_configure_end_summary_section() # end of "Qt Wayland Client Shell Integrations" section qt_configure_add_summary_entry(ARGS "wayland-client") -qt_configure_add_report_entry( - TYPE NOTE - MESSAGE "No wayland-egl support detected. Cross-toolkit compatibility disabled." - CONDITION NOT Wayland_FOUND -)