changeset 5556:b517477362d1 icedtea-2.6pre06

PR1903: [REGRESSION] Bug reports now lack IcedTea version & distribution packaging information
author andrew
date Wed, 13 Aug 2014 15:49:58 +0100
parents e559a0f8f986
children 9cb5dfd703dd c8cbd36042f9
files make/linux/makefiles/buildtree.make make/linux/makefiles/vm.make make/solaris/makefiles/vm.make make/windows/makefiles/vm.make
diffstat 4 files changed, 8 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/make/linux/makefiles/buildtree.make	Mon Aug 11 16:38:33 2014 +0100
+++ b/make/linux/makefiles/buildtree.make	Wed Aug 13 15:49:58 2014 +0100
@@ -210,6 +210,8 @@
 	echo "SA_BUILD_VERSION = $(HS_BUILD_VER)"; \
 	echo "HOTSPOT_BUILD_USER = $(HOTSPOT_BUILD_USER)"; \
 	echo "HOTSPOT_VM_DISTRO = $(HOTSPOT_VM_DISTRO)"; \
+	echo "DERIVATIVE_ID = $(DERIVATIVE_ID)"; \
+	echo "DISTRIBUTION_ID = $(DISTRIBUTION_ID)"; \
 	echo "OPENJDK = $(OPENJDK)"; \
 	echo "OPENJDK_TARGET_CPU_ENDIAN = $(OPENJDK_TARGET_CPU_ENDIAN)"; \
 	echo "ZERO_BUILD = $(ZERO_BUILD)"; \
--- a/make/linux/makefiles/vm.make	Mon Aug 11 16:38:33 2014 +0100
+++ b/make/linux/makefiles/vm.make	Wed Aug 13 15:49:58 2014 +0100
@@ -102,7 +102,7 @@
   ${VM_DISTRO}
 
 ifdef DERIVATIVE_ID
-CPPFLAGS += -DDERIVATIVE_ID="\"$(DERIVATIVE_ID)\""
+CXXFLAGS += -DDERIVATIVE_ID="\"$(DERIVATIVE_ID)\""
 endif
 
 # This is VERY important! The version define must only be supplied to vm_version.o
@@ -120,7 +120,7 @@
 endif
 
 ifdef DISTRIBUTION_ID
-CPPFLAGS += -DDISTRIBUTION_ID="\"$(DISTRIBUTION_ID)\""
+CXXFLAGS += -DDISTRIBUTION_ID="\"$(DISTRIBUTION_ID)\""
 endif
 
 # CFLAGS_WARN holds compiler options to suppress/enable warnings.
--- a/make/solaris/makefiles/vm.make	Mon Aug 11 16:38:33 2014 +0100
+++ b/make/solaris/makefiles/vm.make	Wed Aug 13 15:49:58 2014 +0100
@@ -86,7 +86,7 @@
   ${VM_DISTRO}
 
 ifdef DERIVATIVE_ID
-CPPFLAGS += -DDERIVATIVE_ID="\"$(DERIVATIVE_ID)\""
+CXXFLAGS += -DDERIVATIVE_ID="\"$(DERIVATIVE_ID)\""
 endif
 
 # This is VERY important! The version define must only be supplied to vm_version.o
@@ -95,7 +95,7 @@
 vm_version.o: CXXFLAGS += ${JRE_VERSION}
 
 ifdef DISTRIBUTION_ID
-CPPFLAGS += -DDISTRIBUTION_ID="\"$(DISTRIBUTION_ID)\""
+CXXFLAGS += -DDISTRIBUTION_ID="\"$(DISTRIBUTION_ID)\""
 endif
 
 # Large File Support
--- a/make/windows/makefiles/vm.make	Mon Aug 11 16:38:33 2014 +0100
+++ b/make/windows/makefiles/vm.make	Wed Aug 13 15:49:58 2014 +0100
@@ -80,11 +80,11 @@
 CXX_FLAGS=$(CXX_FLAGS) /D "_JNI_IMPLEMENTATION_"
 
 !ifdef DERIVATIVE_ID
-CPP_FLAGS = $(CPP_FLAGS) /D "DERIVATIVE_ID=\"$(DERIVATIVE_ID)\""
+CXX_FLAGS = $(CPP_FLAGS) /D "DERIVATIVE_ID=\"$(DERIVATIVE_ID)\""
 !endif
 
 !ifdef DISTRIBUTION_ID
-CPP_FLAGS = $(CPP_FLAGS) /D "DISTRIBUTION_ID=\"$(DISTRIBUTION_ID)\""
+CXX_FLAGS = $(CPP_FLAGS) /D "DISTRIBUTION_ID=\"$(DISTRIBUTION_ID)\""
 !endif
 
 !if "$(BUILDARCH)" == "ia64"