Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2225763 | 8-pool | Rickard Backman | P4 | Closed | Won't Fix |
The file jdk/common/Release.gmk currently has a section where it builds an exclude list which says:
ifndef OPENJDK
ifndef JAVASE_EMBEDDED
$(ECHO) "com/oracle/jrockit/jfr/" >> $@
...
endif
endif
since this is an exclude list of which files should go into the rt.jar, the ifndefs are unneccessary and creates confusion. ifndefs should be removed since these files never should go into the rt.jar.
ifndef OPENJDK
ifndef JAVASE_EMBEDDED
$(ECHO) "com/oracle/jrockit/jfr/" >> $@
...
endif
endif
since this is an exclude list of which files should go into the rt.jar, the ifndefs are unneccessary and creates confusion. ifndefs should be removed since these files never should go into the rt.jar.
- backported by
-
JDK-2225763 Incorrect ifndef in makefile
-
- Closed
-