summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2005-10-19 06:28:31 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2005-10-19 06:28:31 +0000
commit712ef18dfe0cb851f478e080678fef406271f5aa (patch)
tree12ef504542d77ce73a6f8588e12205834b1ffe67 /bin
parent84eea016ff49199c102cc54f7521228ce7ea48dd (diff)
downloadATCD-712ef18dfe0cb851f478e080678fef406271f5aa.tar.gz
ChangeLogTag:Tue Oct 18 23:23:14 2005 Ossama Othman <ossama@dre.vanderbilt.edu>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/make_release21
1 files changed, 14 insertions, 7 deletions
diff --git a/bin/make_release b/bin/make_release
index 183af2ed167..fed8b8bb27f 100755
--- a/bin/make_release
+++ b/bin/make_release
@@ -578,8 +578,10 @@ sub update_version_files () {
die "$0: unable to open ciao/Version.h\n";
print CIAO_VERSION_H
- "// \$Id\$\n" .
- "// This is an automatically generated file.\n\n" .
+ "// -*- C++ -*-\n" .
+ "//\n".
+ "\$Id\$\n\n" .
+ "// This is file was automatically generated by $0.\n\n" .
"\#define CIAO_MAJOR_VERSION ${major_version}\n" .
"\#define CIAO_MINOR_VERSION ${minor_version}\n" .
"\#define CIAO_BETA_VERSION ${beta_version}\n" .
@@ -605,8 +607,10 @@ sub update_version_files () {
die "$0: unable to open tao/Version.h\n";
print TAO_VERSION_H
- "// \$Id\$\n" .
- "// This is an automatically generated file.\n\n" .
+ "// -*- C++ -*-\n" .
+ "//\n".
+ "\$Id\$\n\n" .
+ "// This is file was automatically generated by $0.\n\n" .
"\#define TAO_MAJOR_VERSION ${major_version}\n" .
"\#define TAO_MINOR_VERSION ${minor_version}\n" .
"\#define TAO_BETA_VERSION ${beta_version}\n" .
@@ -628,12 +632,15 @@ sub update_version_files () {
die "$0: unable to open ace/Version.h\n";
print ACE_VERSION_H
- "// \$Id\$\n" .
- "// This is an automatically generated file.\n\n" .
+ "// -*- C++ -*-\n" .
+ "//\n".
+ "\$Id\$\n\n" .
+ "// This is file was automatically generated by $0.\n\n" .
"\#define ACE_MAJOR_VERSION ${major_version}\n" .
"\#define ACE_MINOR_VERSION ${minor_version}\n" .
"\#define ACE_BETA_VERSION ${beta_version}\n" .
- "\#define ACE_VERSION \"${version}\"\n";
+ "\#define ACE_VERSION \"${version}\"\n" .
+ "\n#include \"ace/Versioned_Namespace.h\"";
close ACE_VERSION_H;
}