# HG changeset patch # User alanb # Date 1411766677 -3600 # Node ID 91ca509993435dc42fa6311e8c3aac1c753b07e1 # Parent f0c5e4b732da823bdaa4184133675f384e7cd68d 8049389: Move orb.idl and ir.idl to JDK include directory Reviewed-by: erikj diff -r f0c5e4b732da -r 91ca50999343 corba/make/CompileCorba.gmk --- a/corba/make/CompileCorba.gmk Wed Jul 05 20:02:40 2017 +0200 +++ b/corba/make/CompileCorba.gmk Fri Sep 26 22:24:37 2014 +0100 @@ -51,13 +51,11 @@ JAR := $(INTERIM_CORBA_JAR))) ################################################################################ -# Copy idl files straight to jdk/lib. Not sure if this is the right way to do -# it, but we are moving away from the one repo at a time build. Perhaps we should -# scrap the 'jdk' prefix to bin, lib etc? -$(JDK_OUTPUTDIR)/lib/%: $(CORBA_TOPDIR)/src/java.corba/share/classes/com/sun/tools/corba/se/idl/% +# Copy idl files straight to jdk/include. +$(JDK_OUTPUTDIR)/include/%: $(CORBA_TOPDIR)/src/java.corba/share/classes/com/sun/tools/corba/se/idl/% $(install-file) -IDL_TARGET_FILES := $(JDK_OUTPUTDIR)/lib/orb.idl $(JDK_OUTPUTDIR)/lib/ir.idl +IDL_TARGET_FILES := $(JDK_OUTPUTDIR)/include/orb.idl $(JDK_OUTPUTDIR)/include/ir.idl ################################################################################