Skip to content

Commit 5472c91

Browse files
authored
Merge pull request os-autoinst#23660 from DimStar77/poo190245
opensuse_welcome is now available on ppc64le/s390x on Tumbleweed
2 parents 7ae6e57 + b6f3d4a commit 5472c91

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lib/main_common.pm

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,8 +248,9 @@ sub kdestep_is_applicable {
248248

249249
sub opensuse_welcome_applicable {
250250
my $desktop = shift // get_var('DESKTOP', '');
251-
# No libqt5-qtwebengine on ppc64/ppc64le and s390.
252-
return 0 if get_var('ARCH') =~ /ppc64|s390/;
251+
# No libqt5-qtwebengine on ppc64/ppc64le and s390 on anything older than Tumbleweed
252+
# Tumbleweed has switched to a gnome-tour/gtk based implementation
253+
return 0 if !is_tumbleweed && get_var('ARCH') =~ /ppc64|s390/;
253254
# openSUSE-welcome is expected to show up on openSUSE Tumbleweed and Leap 15.2 XFCE only
254255
# starting with Leap 15.3 opensuse-welcome is enabled on supported DEs not just XFCE
255256
return 0 unless is_tumbleweed || is_leap(">=15.3");

0 commit comments

Comments
 (0)