* properly check for linux version supporting statx

git-svn-id: trunk@48469 -
(cherry picked from commit 33cd5778cd)
This commit is contained in:
florian 2021-01-31 16:23:23 +00:00 committed by marcoonthegit
parent 9ca5ae9039
commit afccc19a9e

View File

@ -41,7 +41,7 @@ begin
end; end;
break; break;
end; end;
if (major_release<4) or (minor_release<11) then if (major_release<4) or ((major_release=4) and (minor_release<11)) then
begin begin
writeln('This version of Linux: ',st,' does not have fstatx syscall'); writeln('This version of Linux: ',st,' does not have fstatx syscall');
halt(0); halt(0);