summaryrefslogtreecommitdiff
path: root/modules/VC8ProjectCreator.pm
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2006-02-13 17:15:47 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2006-02-13 17:15:47 +0000
commit76a897180b87b209108a452f0042f31a54c3d36c (patch)
tree945c0ea7bc9fe075ca3c91b0cadd37c587fe292e /modules/VC8ProjectCreator.pm
parent1be2efba35c54a0354959c3516bdebc536a41e1b (diff)
downloadMPC-76a897180b87b209108a452f0042f31a54c3d36c.tar.gz
ChangeLogTag: Mon Feb 13 11:15:04 2006 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'modules/VC8ProjectCreator.pm')
-rw-r--r--modules/VC8ProjectCreator.pm11
1 files changed, 11 insertions, 0 deletions
diff --git a/modules/VC8ProjectCreator.pm b/modules/VC8ProjectCreator.pm
index fe0168e3..19556c28 100644
--- a/modules/VC8ProjectCreator.pm
+++ b/modules/VC8ProjectCreator.pm
@@ -40,6 +40,17 @@ my(%config) = ('vcversion' => '8.00',
# Subroutine Section
# ************************************************************
+sub post_file_creation {
+ my($self) = shift;
+ my($file) = shift;
+
+ ## VC8 stores information in a .user file that may conflict
+ ## with information stored in the project file. If we have
+ ## created a new project file, we will remove the corresponding
+ ## .user file to avoid strange conflicts.
+ unlink("$file.user");
+}
+
sub get_configurable {
my($self) = shift;
my($name) = shift;