summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2004-07-31 02:48:24 +0000
committerbala <balanatarajan@users.noreply.github.com>2004-07-31 02:48:24 +0000
commit9dbbef96fb79220cbb7f326c9d42169a219bda0d (patch)
tree27124c687f9ed0bf8d436eece515ae0db9825015
parentea181af676d2fa1a0e699e78a3e5bb1b21052e5b (diff)
downloadATCD-9dbbef96fb79220cbb7f326c9d42169a219bda0d.tar.gz
ChangeLogTag:Sat Jul 31 02:45:52 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
-rw-r--r--ChangeLog7
-rwxr-xr-xbin/make_release16
2 files changed, 17 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 910abfd3b88..88f44c13815 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Sat Jul 31 02:45:52 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
+
+ * bin/make_release:
+
+ Cosmetic changes to make the generated project and GNUmakefiles
+ look uniform.
+
Fri Jul 30 17:28:44 2004 Ossama Othman <ossama@dre.vanderbilt.edu>
* NEWS: Added ACE 5.4.2 noteworthy items.
diff --git a/bin/make_release b/bin/make_release
index 2f16cd69082..78fda19db36 100755
--- a/bin/make_release
+++ b/bin/make_release
@@ -774,12 +774,16 @@ sub generate_makefiles () {
# Need todo a common chmod on the file lists!
my $here = Cwd::getcwd();
- my $exclude_option = '-exclude TAOACE.mwc,CIAOTAO.mwc';
- my $mpc_option =
- '-recurse -hierarchy -relative ACE_ROOT=$here/ACE_wrappers';
+ my $exclude_option = '-exclude TAO/TAOACE.mwc,TAO/CIAO/CIAOTAO.mwc';
+ my $tmp_mpc_option =
+ '-recurse -hierarchy -relative ACE_ROOT=';
+
+ my $mpc_option = $tmp_mpc_option.$here.'/ACE_wrappers';
- my $static_option =
- '-static -name_modifier *_Static -apply_project -exclude TAO/CIAO,TAOACE.mwc $mpc_option';
+ my $tmp_static_option =
+ '-static -name_modifier *_Static -apply_project -exclude TAO/CIAO,TAO/TAOACE.mwc ';
+
+ my $static_option = $tmp_static_option.$mpc_option;
open (FEATURES, "> ACE_wrappers/bin/MakeProjectCreator/config/default.features") ||
die "$0: unable to open default.features\n";
@@ -792,7 +796,7 @@ sub generate_makefiles () {
"sctp=1\n";
&ex ("cd ACE_wrappers; \
- bin/mwc.pl $mpc_option; \
+ bin/mwc.pl $exclude_option $mpc_option; \
find ./ -name 'GNUmake*' | /usr/bin/xargs chmod 0644");
open (FEATURES_1, "> ACE_wrappers/bin/MakeProjectCreator/config/default.features") ||