summaryrefslogtreecommitdiff
path: root/modules/WinProjectBase.pm
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2005-04-08 17:18:56 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2005-04-08 17:18:56 +0000
commit55647b512a29a59fcc9c49d1b1ad3a488d2f52a6 (patch)
treedd036665c9fbf5606596bfedd206d40b91b729af /modules/WinProjectBase.pm
parentd3b547f598d18549c384661fb234dce483bae5ac (diff)
downloadMPC-55647b512a29a59fcc9c49d1b1ad3a488d2f52a6.tar.gz
ChangeLogTag: Fri Apr 8 12:14:02 2005 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'modules/WinProjectBase.pm')
-rw-r--r--modules/WinProjectBase.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/WinProjectBase.pm b/modules/WinProjectBase.pm
index b690a82f..ab15c386 100644
--- a/modules/WinProjectBase.pm
+++ b/modules/WinProjectBase.pm
@@ -23,7 +23,7 @@ sub validated_directory {
## $(...) could contain a drive letter and Windows can not
## make a directory that resembles a drive letter. So, we have
## to exclude those directories with $(...).
- if ($dir =~ /\$\([^\)]+\)/) {
+ if ($dir =~ /\$\([^\)]+\)/ || $dir =~ /\.\.\\/) {
return '.';
}
else {