projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
090656d
)
make require report too many open files error
Dave Mitchell [Mon, 29 May 2006 15:27:02 +0000 (15:27 +0000)]
ie don't continue searching the rest of @INC
p4raw-id: //depot/perl@28331
pp_ctl.c
patch
|
blob
|
blame
|
history
diff --git
a/pp_ctl.c
b/pp_ctl.c
index
c5b4755
..
9633ba3
100644
(file)
--- a/
pp_ctl.c
+++ b/
pp_ctl.c
@@
-3297,6
+3297,9
@@
PP(pp_require)
tryname += 2;
break;
}
+ else if (errno == EMFILE)
+ /* no point in trying other paths if out of handles */
+ break;
}
}
}