1
1

remove cppcheck 2.7 warning as we are using it now on our CI builds

git-svn-id: http://svn.code.sf.net/p/smartmontools/code/trunk@5316 4ea69e1a-61f1-4043-bf83-b5c94c648137
Этот коммит содержится в:
samm-git 2022-02-09 08:02:23 +00:00
родитель d8a26b39ac
Коммит a00c809df6
2 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -1,5 +1,9 @@
$Id$
2022-02-09 Alex Samorukov <samm@os2.kiev.ua>
Remove cppcheck 2.7 warning as we are using it now on our CI builds
2022-02-02 Christian Franke <franke@computer.org>
update-smart-drivedb.in: Fix regexp quoting.

Просмотреть файл

@ -63,7 +63,7 @@ fi
ver=$("$cppcheck" --version) || exit 1
ver=${ver##* }
case $ver in
1.8[56]|2.[23]) ;;
1.8[56]|2.[237]) ;;
*) echo "$myname: cppcheck $ver not tested with this script" ;;
esac