(lisp): Don't process subdirs that start with =.
This commit is contained in:
parent
f298f0d2bd
commit
762d80d122
1 changed files with 1 additions and 1 deletions
|
@ -267,7 +267,7 @@ echo "Making links to \`lisp' and its subdirectories"
|
||||||
## Find all subdirs of lisp dir
|
## Find all subdirs of lisp dir
|
||||||
for file in `find . -type d -print`; do
|
for file in `find . -type d -print`; do
|
||||||
case $file in
|
case $file in
|
||||||
. | .. | */Old | */RCS)
|
. | .. | */Old | */RCS | */=*)
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
if [ -d $file ]; then
|
if [ -d $file ]; then
|
||||||
|
|
Loading…
Add table
Reference in a new issue