lib/check.mk: catch missing READMEs for features

`make check' is a bit more convenient than relying on my head...
This commit is contained in:
Michael Shigorin 2012-05-16 13:48:12 +03:00
parent c42d635b55
commit 695648f8b4

View File

@ -9,3 +9,9 @@ check:
| while read line; do \
echo "chmod 755 $$line"; \
done
@find features.in -maxdepth 1 -type d \
| while read dir; do \
if [ ! -s "$$dir/README" ]; then \
echo "$$dir: missing README"; \
fi; \
done