Java Solaris Communities Sun Store Join SDN My Profile Why Join?
 
Bug Database
Bug Detail
Quick Lists
Top 25 Bugs
Top 25 RFE's
Recently Closed Bugs
Printable Page Printable Page


Bug Database
Bug ID: 6624808
Votes 0
Synopsis corba makefiles not using langtools compiler
Category java:build
Reported Against
Release Fixed 7(b25), 6-open(b02) (Bug ID:2155433)
State 10-Fix Delivered, bug
Priority: 3-Medium
Related Bugs
Submit Date 01-NOV-2007
Description
The corba makefiles are not picking up the ALT_LANGTOOLS_DIST setting passed into it during a control build
Posted Date : 2007-11-01 16:22:54.0
Work Around
N/A
Evaluation
the file corba/make/common/shared/Defs.gmk is missing the lines

ifdef ALT_LANGTOOLS_DIST
  LANGTOOLS_DIST :=$(call FullPath,$(ALT_LANGTOOLS_DIST))
else
  LANGTOOLS_DIST =
endif
Posted Date : 2007-11-01 16:22:54.0

bonsai<894> hg diff
diff --git a/make/common/shared/Defs.gmk b/make/common/shared/Defs.gmk
--- a/make/common/shared/Defs.gmk
+++ b/make/common/shared/Defs.gmk
@@ -281,6 +281,13 @@ endif
 # Get platform specific settings
 include $(BUILDDIR)/common/shared/Defs-$(PLATFORM).gmk
 
+# Components
+ifdef ALT_LANGTOOLS_DIST
+  LANGTOOLS_DIST :=$(call FullPath,$(ALT_LANGTOOLS_DIST))
+else
+  LANGTOOLS_DIST =
+endif
+
 # These are the same on all platforms but require the above platform include 1st
 
 # BOOTDIR: Bootstrap JDK, previous released JDK.
Posted Date : 2008-03-04 22:00:35.0
Comments
  
  Include a link with my name & email   


PLEASE NOTE: JDK6 is formerly known as Project Mustang