summaryrefslogtreecommitdiff
path: root/bin/make_release
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2004-04-02 04:55:21 +0000
committerbala <balanatarajan@users.noreply.github.com>2004-04-02 04:55:21 +0000
commitf446280b45ef4489200334457fdcb14ba97e352d (patch)
treeca253436bd854894ab3ca73b6a14878c3a4cd511 /bin/make_release
parentca2a4b1a93a9aaafbcad2cb777c557c8001f999c (diff)
downloadATCD-f446280b45ef4489200334457fdcb14ba97e352d.tar.gz
ChangeLogTag:Thu Apr 1 22:54:51 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
Diffstat (limited to 'bin/make_release')
-rwxr-xr-xbin/make_release12
1 files changed, 7 insertions, 5 deletions
diff --git a/bin/make_release b/bin/make_release
index 23bcf5bfac9..d94b730b5a0 100755
--- a/bin/make_release
+++ b/bin/make_release
@@ -760,9 +760,11 @@ sub generate_makefiles () {
my $here = Cwd::getcwd();
&ex ("cd ACE_wrappers; \
- ../bin/mwc.pl -type vc6 -static -recurse -hierarchy -name_modifier *_Static -apply_project -relative ACE_ROOT=$here/ACE_wrappers;\
- ../bin/mwc.pl -type vc71 -recurse -hierarchy -relative ACE_ROOT=$here/ACE_wrappers;\
- chmod 0644 *.dsp *.dsw *.vcproj *.sln");
+ bin/mwc.pl -type vc6 -static -recurse -hierarchy -name_modifier *_Static -apply_project -relative ACE_ROOT=$here/ACE_wrappers;\
+ bin/mwc.pl -type vc71 -recurse -hierarchy -relative ACE_ROOT=$here/ACE_wrappers;\
+ find ./ -name '*.ds[p,w]' | /usr/bin/xargs chmod 0644;\
+ find ./ -name '*.vcproj' | /usr/bin/xargs chmod 0644;\
+ find ./ -name '*.sln' | /usr/bin/xargs chmod 0644");
}
sub generate_em3 () {
@@ -770,8 +772,8 @@ sub generate_em3 () {
my $here = Cwd::getcwd();
&ex ("cd ACE_wrappers; \
- ../bin/mwc.pl -type em3 -exclude TAO -recurse -hierarchy -relative ACE_ROOT=$here/ACE_wrappers;\
- chmod 0644 *.vcp *.vcw");
+ bin/mwc.pl -type em3 -exclude TAO -recurse -hierarchy -relative ACE_ROOT=$here/ACE_wrappers;\
+ find ./ -name '*.vc[p,w]' | /usr/bin/xargs chmod 0644");
}
########