GH-4014 fix kernel version scanning on macOS and linux some more
This commit is contained in:
parent
c17b359d03
commit
823e7d22c7
@ -25,9 +25,9 @@ Sys::KernelInfo Sys::getKernelInfo()
|
|||||||
if(sections.size() >= 1) {
|
if(sections.size() >= 1) {
|
||||||
auto versionParts = sections[0].split('.');
|
auto versionParts = sections[0].split('.');
|
||||||
if(versionParts.size() >= 3) {
|
if(versionParts.size() >= 3) {
|
||||||
out.kernelMajor = sections[0].toInt();
|
out.kernelMajor = versionParts[0].toInt();
|
||||||
out.kernelMinor = sections[1].toInt();
|
out.kernelMinor = versionParts[1].toInt();
|
||||||
out.kernelPatch = sections[2].toInt();
|
out.kernelPatch = versionParts[2].toInt();
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
qWarning() << "Not enough version numbers in " << sections[0] << " found " << versionParts.size();
|
qWarning() << "Not enough version numbers in " << sections[0] << " found " << versionParts.size();
|
||||||
|
@ -30,9 +30,9 @@ Sys::KernelInfo Sys::getKernelInfo()
|
|||||||
if(sections.size() >= 1) {
|
if(sections.size() >= 1) {
|
||||||
auto versionParts = sections[0].split('.');
|
auto versionParts = sections[0].split('.');
|
||||||
if(versionParts.size() >= 3) {
|
if(versionParts.size() >= 3) {
|
||||||
out.kernelMajor = sections[0].toInt();
|
out.kernelMajor = versionParts[0].toInt();
|
||||||
out.kernelMinor = sections[1].toInt();
|
out.kernelMinor = versionParts[1].toInt();
|
||||||
out.kernelPatch = sections[2].toInt();
|
out.kernelPatch = versionParts[2].toInt();
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
qWarning() << "Not enough version numbers in " << sections[0] << " found " << versionParts.size();
|
qWarning() << "Not enough version numbers in " << sections[0] << " found " << versionParts.size();
|
||||||
|
Loading…
Reference in New Issue
Block a user