From e7f5276fbe0dda18ab534c1a9c49d22a9500bc1f Mon Sep 17 00:00:00 2001 From: Eike Rathke Date: Tue, 28 Nov 2023 17:05:31 +0100 Subject: [PATCH] Bump default rhel minor versions Related: RHEL-16522 --- thunderbird.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/thunderbird.spec b/thunderbird.spec index 57ba8b4..b9e854c 100644 --- a/thunderbird.spec +++ b/thunderbird.spec @@ -23,7 +23,7 @@ function dist_to_rhel_minor(str, start) end match = string.match(str, ".el8") if match then - return 9 + return 10 end match = string.match(str, ".module%+el9.%d+") if match then @@ -35,7 +35,7 @@ function dist_to_rhel_minor(str, start) end match = string.match(str, ".el9") if match then - return 3 + return 4 end return -1 end}