préférer la version locale en cas d'égalité de version

This commit is contained in:
Jephté Clain 2014-09-15 10:18:45 +04:00
parent 55f72a1c2e
commit caad36ebe6
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ function __ulibver_check() {
[ "$sminor" -gt "$minor" ] && return 0
[ "$sminor" -lt "$minor" ] && return 1
# puis tester patchlevel
[ "$spatch" -ge "$patch" ]
[ "$spatch" -gt "$patch" ]
}
if [ -f /etc/ulib ] && __ulibver_check; then