Commit 695648f8 authored by Michael Shigorin's avatar Michael Shigorin

lib/check.mk: catch missing READMEs for features

`make check' is a bit more convenient than relying on my head...
parent c42d635b
......@@ -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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment