Hi David,

your change causes build problems with ubuntu 12.04. Result is:

make[2]: Entering directory `/usr/local/src/jdk8tl/jdk/makefiles'
make[2]: *** No rule to make target `/usr/local/src/jdk8tl/build/linux-x86-normal-server-release/images/lib/jfr.jar', needed by `all'. Stop.
make[2]: Leaving directory `/usr/local/src/jdk8tl/jdk/makefiles'
make[1]: *** [images] Error 2
make[1]: Leaving directory `/usr/local/src/jdk8tl/jdk/makefiles'
make: *** [images-only] Error 2

I tried several make clean, configure and so on but only when i rollback your change i can compile.

Andreas


On 20.08.13 01:33, David Holmes wrote:
http://cr.openjdk.java.net/~dholmes/8023311/webrev/

Patch inlined below

This is a trivial cleanup following on from an earlier change under
8017570. JFR was moved from profile compact3 to the full JRE but not all
the variables in profile-includes.txt were updated as needed. jfr.jar
needed to removed from the profile3 jar list and added to the jre jar list.

This has no impact on the actual build artifacts - JFR was, and remains,
in the full JRE only.

Thanks,
David

--- old/makefiles/profile-includes.txt    2013-08-19 19:10:17.554355677
-0400
+++ new/makefiles/profile-includes.txt    2013-08-19 19:10:14.586187808
-0400
@@ -102,6 +102,7 @@
      security/US_export_policy.jar \
      security/local_policy.jar

+
  PROFILE_2_JRE_BIN_FILES := \
      rmid$(EXE_SUFFIX) \
      rmiregistry$(EXE_SUFFIX)
@@ -140,7 +141,6 @@
  PROFILE_3_JRE_OTHER_FILES :=

  PROFILE_3_JRE_JAR_FILES := \
-    jfr.jar \
      management-agent.jar


@@ -253,6 +253,6 @@
      ext/cldrdata.jar \
      ext/dnsns.jar \
      ext/nashorn.jar \
-    ext/zipfs.jar
-
+    ext/zipfs.jar \
+    jfr.jar


Reply via email to