From 1f9b45377039f5839f8ee4dde265a297ec146062 Mon Sep 17 00:00:00 2001 From: Andras Timar Date: Tue, 24 Apr 2012 09:24:49 +0200 Subject: fdo#48259 take MSMDir from registry --- oowintool | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) (limited to 'oowintool') diff --git a/oowintool b/oowintool index 06e6607aeabb..3b8d76311f49 100755 --- a/oowintool +++ b/oowintool @@ -274,17 +274,9 @@ sub msvc_copy_msms($$) { # $postfix is empty for x86, and '_x64' for x64 my ($dest, $postfix) = @_; - my $common_files_path = $ENV{"CommonProgramFiles(x86)"}; - if (!defined $common_files_path) { - $common_files_path = $ENV{CommonProgramFiles}; - if (!defined $common_files_path) { - $common_files_path = "C:\\Program Files\\Common Files"; - } - } - - defined $common_files_path || die "Windows CommonProgramFiles not found"; - my $msm_path = (cygpath $common_files_path . "\\Merge Modules", 'w', $output_format); + my $msm_path = (cygpath reg_get_value ("HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/VisualStudio/9.0/Setup/VS/MSMDir"), 'w', $output_format); + defined $msm_path || die "MSMDir not found"; foreach $fname ("Microsoft_VC90_CRT_x86$postfix.msm", "policy_9_0_Microsoft_VC90_CRT_x86$postfix.msm") { print STDERR "Copying $msm_path/$fname to $dest\n"; copy ("$msm_path/$fname", $dest) || die "copy failed: $!"; -- cgit