Skip to content
Snippets Groups Projects
Commit a9964249 authored by Per Hedbor's avatar Per Hedbor
Browse files

If there is a file .noautodocs in a directory, do not traverse it.

parent 4ef8d0ee
Branches
Tags
No related merge requests found
......@@ -177,6 +177,9 @@ void recurse(string srcdir, string builddir, int root_ts, array(string) root)
werror("Extracting from %s\n", srcdir);
Stdio.Stat st;
if(file_stat(srcdir+"/.noautodoc"))
return;
if(st = file_stat(srcdir+"/.autodoc")) {
// Note .autodoc files are space-separated to allow for namespaces like
// "7.0::".
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment