Hi, A clean checkout of the latest OpenJDK didn't build for me because 2 Makefiles have a wrong path to BinaryPlugs.gmk. The attached patch fixes the problem.
Cheers, Roman -- Dipl.-Inform. (FH) Roman Kennke, Software Engineer, http://kennke.org aicas Allerton Interworks Computer Automated Systems GmbH Haid-und-Neu-Straße 18 * D-76131 Karlsruhe * Germany http://www.aicas.com * Tel: +49-721-663 968-0 USt-Id: DE216375633, Handelsregister HRB 109481, AG Karlsruhe Geschäftsführer: Dr. James J. Hunt
Index: j2se/make/javax/sound/Makefile =================================================================== --- j2se/make/javax/sound/Makefile (Revision 252) +++ j2se/make/javax/sound/Makefile (Arbeitskopie) @@ -61,7 +61,7 @@ # copy closed .class files build: import-binary-plug-sound-classes -include $(BUILDDIR)/common/BinaryPlugs.gmk +include $(BUILDDIR)/common/internal/BinaryPlugs.gmk endif # OPENJDK Index: j2se/make/javax/sound/jsoundhs/Makefile =================================================================== --- j2se/make/javax/sound/jsoundhs/Makefile (Revision 252) +++ j2se/make/javax/sound/jsoundhs/Makefile (Arbeitskopie) @@ -39,7 +39,7 @@ build: import-binary-plug-jsound-library -include $(BUILDDIR)/common/BinaryPlugs.gmk +include $(BUILDDIR)/common/internal/BinaryPlugs.gmk else # OPENJDK
