6841873: Fix windows redist default location for msvc runtime dlls
authorohair
Fri, 15 May 2009 13:14:40 -0700
changeset 12119eeeeee69368
parent 1210 7ec6857812d2
child 1212 97064d73976f
6841873: Fix windows redist default location for msvc runtime dlls
Reviewed-by: tbell
make/common/shared/Defs-windows.gmk
     1.1 --- a/make/common/shared/Defs-windows.gmk	Fri May 08 11:24:17 2009 -0700
     1.2 +++ b/make/common/shared/Defs-windows.gmk	Fri May 15 13:14:40 2009 -0700
     1.3 @@ -277,9 +277,9 @@
     1.4      # Assume PlatformSDK is in VS71 (will be empty if VS90)
     1.5      _ms_sdk       :=$(call FullPath,$(_msvc_dir)/PlatformSDK)
     1.6      # Assume VS90, then VS80, then VS71
     1.7 -    _redist_sdk   :=$(call FullPath,$(_msvc_dir)/../SDK/v3.5/Bin)
     1.8 +    _redist_sdk   :=$(call FullPath,$(_msvc_dir)/redist/x86/Microsoft.VC90.CRT)
     1.9      ifeq ($(_redist_sdk),)
    1.10 -      _redist_sdk   :=$(call FullPath,$(_msvc_dir)/../SDK/v2.0/Bin)
    1.11 +      _redist_sdk   :=$(call FullPath,$(_msvc_dir)/redist/x86/Microsoft.VC80.CRT)
    1.12        ifeq ($(_redist_sdk),)
    1.13          _redist_sdk   :=$(call FullPath,$(_msvc_dir)/../SDK/v1.1/Bin)
    1.14        endif