6624808: corba makefiles not using langtools compiler

Thu, 06 Mar 2008 13:56:47 -0800

author
ohair
date
Thu, 06 Mar 2008 13:56:47 -0800
changeset 4
a51017b6ba6d
parent 3
fec639c69db2
child 5
5e61d5df6258

6624808: corba makefiles not using langtools compiler
Summary: If supplied, the langtools javac should be used.
Reviewed-by: xdono

make/common/shared/Defs.gmk file | annotate | diff | comparison | revisions
     1.1 --- a/make/common/shared/Defs.gmk	Fri Feb 29 20:03:57 2008 -0800
     1.2 +++ b/make/common/shared/Defs.gmk	Thu Mar 06 13:56:47 2008 -0800
     1.3 @@ -281,6 +281,13 @@
     1.4  # Get platform specific settings
     1.5  include $(BUILDDIR)/common/shared/Defs-$(PLATFORM).gmk
     1.6  
     1.7 +# Components
     1.8 +ifdef ALT_LANGTOOLS_DIST
     1.9 +  LANGTOOLS_DIST :=$(call FullPath,$(ALT_LANGTOOLS_DIST))
    1.10 +else
    1.11 +  LANGTOOLS_DIST =
    1.12 +endif
    1.13 +
    1.14  # These are the same on all platforms but require the above platform include 1st
    1.15  
    1.16  # BOOTDIR: Bootstrap JDK, previous released JDK.

mercurial