Commit 12a3cb7a by Richard Stallman

Don't scan sub-directories whose names end in CC

or contain ++ - these are probably C++ directories.

From-SVN: r6007
parent bc2eeab2
......@@ -135,8 +135,11 @@ for code in ALL STD ; do
newdirs=
for d in $dirs ; do
# Find all directories under $d, relative to $d, excluding $d itself.
# Assume directory names ending in CC or containing ++ are
# for C++, so skip those.
subdirs="$subdirs "`cd $rel_source_dir/$d; find . -type d -print | \
sed -e '/^\.$/d' -e "s|^\./|${d}/|" -e 's|^\./||'`
sed -e '/^\.$/d' -e "s|^\./|${d}/|" -e 's|^\./||' \
-e '/CC$/d' -e '/\+\+/d'`
links=
links=`cd $rel_source_dir; find $d/. -type l -print | \
sed -e "s|$d/./|$d/|" -e 's|^\./||'`
......
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