diff options
author | Tor Lillqvist <tlillqvist@novell.com> | 2010-12-21 18:55:41 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@hemulen.(none)> | 2010-12-21 18:55:41 +0200 |
commit | 4ce4ff8a53831b9338fa5b5090c45dad9cf639e0 (patch) | |
tree | 431d589218612b145b075e4eaf1054d9ad1e06d4 /oowintool | |
parent | 6009e97da49339ffbb1650a607ec83ee8409be8d (diff) |
Actually we don't seem to need instmsiw.exe anywhere
Diffstat (limited to 'oowintool')
-rwxr-xr-x | oowintool | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/oowintool b/oowintool index d84cc6d99783..70c73b7a3aae 100755 --- a/oowintool +++ b/oowintool @@ -46,7 +46,6 @@ sub print_syntax() print " commands:\n"; print " --msvc-ver - dump version of MSVC eg. 6.0\n"; print " --msvc-copy-dlls <dest> - copy msvc[pr]??.dlls into <dest>/msvcp??/\n"; - print " --msvc-copy-instmsi <dest> - copy instmsia.exe, insmsiw.exe into <dest>\n"; print " --msvc-productdir - dump productdir\n"; print " --msvs-productdir - dump productdir\n"; print " --dotnetsdk-dir - dump .Net SDK path\n"; @@ -123,42 +122,36 @@ sub print_psdk_home() my %msvs_2008 = ( 'ver' => '9.0', 'key' => 'Microsoft/VisualStudio/9.0/Setup/VS/ProductDir', - 'instmsi_path' => '?', 'dll_path' => 'VC/redist/x86/Microsoft.VC90.CRT', 'dll_suffix' => '90' ); my %msvc_2008 = ( 'ver' => '9.0', 'key' => 'Microsoft/VisualStudio/9.0/Setup/VC/ProductDir', - 'instmsi_path' => '?', 'dll_path' => 'redist/x86/Microsoft.VC90.CRT', 'dll_suffix' => '90' ); my %msvs_express_2008 = ( 'ver' => '9.0', 'key' => 'Microsoft/VCExpress/9.0/Setup/VS/ProductDir', - 'instmsi_path' => '?', 'dll_path' => 'VC/redist/x86/Microsoft.VC90.CRT', 'dll_suffix' => '90' ); my %msvc_express_2008 = ( 'ver' => '9.0', 'key' => 'Microsoft/VCExpress/9.0/Setup/VC/ProductDir', - 'instmsi_path' => '?', 'dll_path' => 'redist/x86/Microsoft.VC90.CRT', 'dll_suffix' => '90' ); my %msvs_2010 = ( 'ver' => '10.0', 'key' => 'Microsoft/VisualStudio/10.0/Setup/VS/ProductDir', - 'instmsi_path' => '?', 'dll_path' => 'VC/redist/x86/Microsoft.VC100.CRT', 'dll_suffix' => '100' ); my %msvc_2010 = ( 'ver' => '10.0', 'key' => 'Microsoft/VisualStudio/10.0/Setup/VC/ProductDir', - 'instmsi_path' => '?', 'dll_path' => 'redist/x86/Microsoft.VC100.CRT', 'dll_suffix' => '100' ); @@ -291,20 +284,6 @@ sub msvc_copy_dlls($) } } -sub msvc_copy_instmsi($) -{ - my $dest = shift; - my $ver = msvc_find_version('instmsi_path'); - defined $ver || return; - my $srcdir = (cygpath ($ver->{'product_dir'}, 'w', 'u') . '/' . - $ver->{'instmsi_path'}); - - copy_dll ($srcdir, "instmsia.exe", - $dest); - copy_dll ($srcdir, "instmsiw.exe", - $dest); -} - if (!@ARGV) { print_syntax(); exit 1; @@ -332,10 +311,6 @@ while (@commands) { my $dest = shift @commands; defined $dest || die "copy-dlls requires a destination directory"; msvc_copy_dlls( $dest ); - } elsif ($opt eq '--msvc-copy-instmsi') { - my $dest = shift @commands; - defined $dest || die "copy-instmsi requires a destination directory"; - msvc_copy_instmsi( $dest ); } elsif ($opt eq '--msvs-productdir') { print_msvs_productdir(); } elsif ($opt eq '--msvc-productdir') { |