-
Bug
-
Resolution: Fixed
-
P3
-
1.4.0
-
None
-
beta2
-
generic
-
generic
Name: dm26566 Date: 06/21/2001
When checking HOTSPOT_LIB_PATH on win32 the sanity check should make
sure that jvm.lib and jvm_g.lib both exist, however it currently
passes even if jvm_g.lib is not there. The build later fails.
The logic in the check is wrong and should be changed:
< # @(#)Sanity.gmk 1.23 01/05/23
---
> # @(#)Sanity.gmk 1.24 01/06/21
766c766
< @if [ ! -r $(HOTSPOT_LIB_PATH)/jvm.lib -a -r
$(HOTSPOT_LIB_PATH)/jvm_g.lib ]; then ---
> @if [ ! -r $(HOTSPOT_LIB_PATH)/jvm.lib -o ! -r
$(HOTSPOT_LIB_PATH)/jvm_g.lib ]; then
======================================================================