summaryrefslogtreecommitdiff
path: root/modules/BMakeWorkspaceCreator.pm
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2004-03-15 16:04:13 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2004-03-15 16:04:13 +0000
commitf65a7d527b8c1b7aae86d0ca821b157a403061ae (patch)
tree23eb165c77b34a44a78b9c5994ee14bbf40f8498 /modules/BMakeWorkspaceCreator.pm
parent30e40069ec7da2f5605898048daba0621eb553ba (diff)
downloadMPC-f65a7d527b8c1b7aae86d0ca821b157a403061ae.tar.gz
ChangeLogTag: Mon Apr 5 10:43:03 2004 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'modules/BMakeWorkspaceCreator.pm')
-rw-r--r--modules/BMakeWorkspaceCreator.pm19
1 files changed, 12 insertions, 7 deletions
diff --git a/modules/BMakeWorkspaceCreator.pm b/modules/BMakeWorkspaceCreator.pm
index 873bd0c4..5e579001 100644
--- a/modules/BMakeWorkspaceCreator.pm
+++ b/modules/BMakeWorkspaceCreator.pm
@@ -47,13 +47,18 @@ sub pre_workspace {
my($fh) = shift;
my($crlf) = $self->crlf();
- print $fh "#----------------------------------------------------------------------------$crlf" .
- "# Borland Workspace Makefile$crlf" .
- "#$crlf" .
- "# This file was automatically generated by MPC. Any changes made directly to$crlf" .
- "# this file will be lost the next time it is generated.$crlf" .
- "#$crlf" .
- "#----------------------------------------------------------------------------$crlf" .
+ print $fh '#----------------------------------------------------------------------------', $crlf,
+ '# Borland Workspace Makefile', $crlf,
+ '#', $crlf,
+ '# $Id$', $crlf,
+ '#', $crlf,
+ '# This file was generated by MPC. Any changes made directly to', $crlf,
+ '# this file will be lost the next time it is generated.', $crlf,
+ '#', $crlf,
+ '# MPC Command:', $crlf,
+ "# $0 @ARGV", $crlf,
+ '#', $crlf,
+ '#----------------------------------------------------------------------------', $crlf,
$crlf;
}