6841873: Fix windows redist default location for msvc runtime dlls
authorohair
Fri, 15 May 2009 13:14:40 -0700
changeset 2797 0285c9a8502b
parent 2796 8f7662a82339
child 2798 bf109527150f
6841873: Fix windows redist default location for msvc runtime dlls Reviewed-by: tbell
jdk/make/common/shared/Defs-windows.gmk
--- a/jdk/make/common/shared/Defs-windows.gmk	Fri May 08 11:24:17 2009 -0700
+++ b/jdk/make/common/shared/Defs-windows.gmk	Fri May 15 13:14:40 2009 -0700
@@ -277,9 +277,9 @@
     # Assume PlatformSDK is in VS71 (will be empty if VS90)
     _ms_sdk       :=$(call FullPath,$(_msvc_dir)/PlatformSDK)
     # Assume VS90, then VS80, then VS71
-    _redist_sdk   :=$(call FullPath,$(_msvc_dir)/../SDK/v3.5/Bin)
+    _redist_sdk   :=$(call FullPath,$(_msvc_dir)/redist/x86/Microsoft.VC90.CRT)
     ifeq ($(_redist_sdk),)
-      _redist_sdk   :=$(call FullPath,$(_msvc_dir)/../SDK/v2.0/Bin)
+      _redist_sdk   :=$(call FullPath,$(_msvc_dir)/redist/x86/Microsoft.VC80.CRT)
       ifeq ($(_redist_sdk),)
         _redist_sdk   :=$(call FullPath,$(_msvc_dir)/../SDK/v1.1/Bin)
       endif