aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorThéo Zimmermann2020-03-04 16:19:54 +0100
committerThéo Zimmermann2020-03-04 16:26:29 +0100
commit0589a7a13e02a91cdf60d8e9a95172ae28d11527 (patch)
tree33817f6c21475cfea905f141675ce64b183cd67f /doc
parentcfecd54efac7191690f37af1edcc91389ae180e1 (diff)
Fix #11749: don't warn for hidden files.
Diffstat (limited to 'doc')
-rwxr-xr-xdoc/stdlib/make-library-index3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/stdlib/make-library-index b/doc/stdlib/make-library-index
index a51308f153..cb93a4c8cc 100755
--- a/doc/stdlib/make-library-index
+++ b/doc/stdlib/make-library-index
@@ -36,7 +36,8 @@ for k in $LIBDIRS; do
fi
else
if [ $h = 0 ]; then
- echo Warning: $k/$b.v will be hidden from the index
+ # Skipping file from the index
+ :
else
echo Error: none of $FILE and $HIDDEN mention $k/$b.v
exit 1