summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog8
-rw-r--r--ChangeLogs/ChangeLog-03a8
-rw-r--r--bin/MakeProjectCreator/modules/Parser.pm2
3 files changed, 17 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 713432e40bd..450972c9691 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+Thu Dec 12 06:18:02 2002 Chad Elliott <elliott_c@ociweb.com>
+
+ * bin/MakeProjectCreator/modules/Parser.pm:
+
+ Fixed a bug with setting and retrieving the current working
+ directory. Thanks to Steve Huston <shuston@riverace.com> for
+ reporting this.
+
Thu Dec 12 00:01:37 2002 Balachandran Natarajan <bala@isis-server.isis.vanderbilt.edu>
* netsvcs/clients/Naming/Client/Makefile: Fixed a small problem in
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 713432e40bd..450972c9691 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,11 @@
+Thu Dec 12 06:18:02 2002 Chad Elliott <elliott_c@ociweb.com>
+
+ * bin/MakeProjectCreator/modules/Parser.pm:
+
+ Fixed a bug with setting and retrieving the current working
+ directory. Thanks to Steve Huston <shuston@riverace.com> for
+ reporting this.
+
Thu Dec 12 00:01:37 2002 Balachandran Natarajan <bala@isis-server.isis.vanderbilt.edu>
* netsvcs/clients/Naming/Client/Makefile: Fixed a small problem in
diff --git a/bin/MakeProjectCreator/modules/Parser.pm b/bin/MakeProjectCreator/modules/Parser.pm
index 7040b1f8652..40f46ec8034 100644
--- a/bin/MakeProjectCreator/modules/Parser.pm
+++ b/bin/MakeProjectCreator/modules/Parser.pm
@@ -31,7 +31,7 @@ sub cd {
my($self) = shift;
my($dir) = shift;
my($status) = chdir($dir);
- if ($status) {
+ if ($status && $dir ne '.') {
if ($dir =~ /^\// || $dir =~ /^[A-Za-z]:/) {
$cwd = $dir;
}