diff --git a/www/Makefile b/www/Makefile index 069466a6c..506e18ae1 100644 --- a/www/Makefile +++ b/www/Makefile @@ -1,2 +1,10 @@ check: - find -name '*.html' | while read f; do tidy -e < "$$f" | sed "s|^-e|$$f|"; done + @command -v tidy >/dev/null 2>&1 || { \ + echo "Error: tidy is required to check the website." >&2; \ + exit 1; \ + } + @status=0; \ + for f in $$(find . -name '*.html'); do \ + tidy -e "$$f" || status=$$?; \ + done; \ + exit $$status diff --git a/www/comparison.html b/www/comparison.html index 53e70bf8c..1d97dd2dd 100644 --- a/www/comparison.html +++ b/www/comparison.html @@ -516,8 +516,7 @@ target reconfiguration in a PnP-like manner)
15. You can find a proposal how to implement zero-copy FILEIO in SCST on the - Contributing page.
+15. The page-cache based zero-copy FILEIO implementation was removed.
16. Doesn't need any kernel patch, except in the case, when used with user space backend.
@@ -544,17 +543,5 @@ target reconfiguration in a PnP-like manner)