summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2003-05-09 17:14:00 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2003-05-09 17:14:00 +0000
commitac0c34b3a10d8c25d7f160f89180a53342e1c86c (patch)
tree74ca1a72c5641ae58d02beb75a7988f25f6f8f94
parent856c64618711206bef03e0bc6055210e2595775e (diff)
downloadATCD-ac0c34b3a10d8c25d7f160f89180a53342e1c86c.tar.gz
ChangeLogTag: Fri May 9 12:12:51 2003 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r--ChangeLog6
-rw-r--r--bin/MakeProjectCreator/modules/ProjectCreator.pm2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 721402e00cb..8076db650a1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Fri May 9 12:12:51 2003 Chad Elliott <elliott_c@ociweb.com>
+
+ * bin/MakeProjectCreator/modules/ProjectCreator.pm:
+
+ Fixed a bug where file names would have extra slashes in them.
+
Fri May 9 11:58:57 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* THANKS: Added Ira Burton to the hall of fame.
diff --git a/bin/MakeProjectCreator/modules/ProjectCreator.pm b/bin/MakeProjectCreator/modules/ProjectCreator.pm
index 59a31c7405d..16b7f1a14a7 100644
--- a/bin/MakeProjectCreator/modules/ProjectCreator.pm
+++ b/bin/MakeProjectCreator/modules/ProjectCreator.pm
@@ -1146,7 +1146,7 @@ sub sift_files {
my($file) = $self->escape_regex_special($save);
if ($pjname =~ /$file/ || $file =~ /$pjname/) {
if (!$self->already_added($array, $file)) {
- push(@$array, $file);
+ push(@$array, $save);
}
}
}