summaryrefslogtreecommitdiff
path: root/ACE/bin/make_release.py
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/bin/make_release.py')
-rwxr-xr-xACE/bin/make_release.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/ACE/bin/make_release.py b/ACE/bin/make_release.py
index 8add6e145c3..fa08c05e4d9 100755
--- a/ACE/bin/make_release.py
+++ b/ACE/bin/make_release.py
@@ -888,7 +888,7 @@ def generate_workspaces (stage_dir):
msvc_exclude_option = ' '
vc12_option = ' -name_modifier *_vc12 '
vc14_option = ' -name_modifier *_vc14 '
- vc15_option = ' -name_modifier *_vc15 '
+ vs2017_option = ' -name_modifier *_vs2017 '
redirect_option = str ()
if not opts.verbose:
@@ -903,8 +903,8 @@ def generate_workspaces (stage_dir):
print "\tGenerating VC14 solutions..."
ex (mpc_command + " -type vc14 " + msvc_exclude_option + mpc_option + workers_option + vc14_option + redirect_option)
- print "\tGenerating VC15 solutions..."
- ex (mpc_command + " -type vc15 " + msvc_exclude_option + mpc_option + workers_option + vc15_option + redirect_option)
+ print "\tGenerating VS2017 solutions..."
+ ex (mpc_command + " -type vs2017 " + msvc_exclude_option + mpc_option + workers_option + vs2017_option + redirect_option)
print "\tCorrecting permissions for all generated files..."
ex ("find ./ -name '*.vc[p,w]' -or -name '*.bmak' -or -name '*.vcproj' -or -name '*.sln' -or -name '*.vcxproj' -or -name '*.filters' -or -name 'GNUmake*' | xargs chmod 0644")