From 1bcce5d0a501306369be8eecc65e12b67b3d359f Mon Sep 17 00:00:00 2001 From: probonopd Date: Thu, 17 Jan 2019 07:44:05 +0100 Subject: [PATCH] openSUSE Leap 15.0 uses glibc 2.26 and is used on OBS --- tools/linuxdeployqt/main.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/linuxdeployqt/main.cpp b/tools/linuxdeployqt/main.cpp index 6e3d43f..6e6e6d1 100644 --- a/tools/linuxdeployqt/main.cpp +++ b/tools/linuxdeployqt/main.cpp @@ -187,7 +187,8 @@ int main(int argc, char **argv) qInfo() << " For more information, please see"; qInfo() << " https://github.com/probonopd/linuxdeployqt/issues/340"; } else { - if (strverscmp (glcv, "2.21") >= 0) { + // openSUSE Leap 15.0 uses glibc 2.26 and is used on OBS + if (strverscmp (glcv, "2.27") >= 0) { qInfo() << "ERROR: The host system is too new."; qInfo() << "Please run on a system with a glibc version no newer than what comes with the oldest"; qInfo() << "still-supported mainstream distribution, which currently is glibc 2.20.";