summaryrefslogtreecommitdiff
path: root/modules/Parser.pm
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2003-04-23 18:58:36 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2003-04-23 18:58:36 +0000
commite8ba1e0fb3ea327c0eb51ff91c20a8eed828df82 (patch)
treee7bb1b26c0d9bb9a0d34f06cbe520fc6f29779e5 /modules/Parser.pm
parent35387f13da6c719faa1c9e8d1eb3f6be58c4dba5 (diff)
downloadMPC-e8ba1e0fb3ea327c0eb51ff91c20a8eed828df82.tar.gz
ChangeLogTag: Wed Apr 23 13:54:27 2003 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'modules/Parser.pm')
-rw-r--r--modules/Parser.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/Parser.pm b/modules/Parser.pm
index 1376c8ac..1f2b14d3 100644
--- a/modules/Parser.pm
+++ b/modules/Parser.pm
@@ -145,7 +145,7 @@ sub search_include_path {
my($file) = shift;
my($found) = undef;
- foreach my $include (@{$self->{'include'}}) {
+ foreach my $include (@{$self->{'include'}}, '.') {
if (-r "$include/$file") {
$found = "$include/$file";
last;