6825175: Remove or disable sanity check on binary plugs jdk7-b53
authorohair
Wed, 01 Apr 2009 16:49:43 -0700
changeset 974a2033addca67
parent 973 deced414c8e4
child 975 8536cdffa32e
child 1013 ce73dcf13656
6825175: Remove or disable sanity check on binary plugs
Reviewed-by: xdono
make/common/shared/Sanity.gmk
     1.1 --- a/make/common/shared/Sanity.gmk	Wed Apr 01 08:58:18 2009 -0700
     1.2 +++ b/make/common/shared/Sanity.gmk	Wed Apr 01 16:49:43 2009 -0700
     1.3 @@ -502,13 +502,15 @@
     1.4  ######################################################
     1.5  ifdef OPENJDK
     1.6  sane-binary-plugs:
     1.7 +  ifeq ($(IMPORT_BINARY_PLUGS),true)
     1.8  	@if [ ! -d "$(BINARY_PLUGS_PATH)" ]; then \
     1.9 -	  $(ECHO) "ERROR: Can't locate pre-built libraries. \n" \
    1.10 +	  $(ECHO) "WARNING: Can't locate pre-built libraries. \n" \
    1.11  	    "      Please check your access to \n" \
    1.12  	    "          $(BINARY_PLUGS_PATH) \n" \
    1.13  	    "      and/or check your value of ALT_BINARY_PLUGS_PATH. \n" \
    1.14 -	   "" >> $(ERROR_FILE); \
    1.15 +	   "" >> $(WARNING_FILE); \
    1.16  	fi
    1.17 +  endif
    1.18  endif
    1.19  
    1.20  ######################################################