Update release notes to 11.0.20.1+1 Add backport of JDK-8312489 already upstream in 11.0.22 (see OPENJDK-2095) Add backport of JDK-8243210 already upstream in 11.0.21 (see RH2229269) Update openjdk_news script to specify subdirectory last Add missing discover_trees script required by openjdk_news Resolves: RHEL-35226 Related: RHEL-30918
		
			
				
	
	
		
			55 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| # Copyright (C) 2020 Red Hat, Inc.
 | |
| # Written by Andrew John Hughes <gnu.andrew@redhat.com>.
 | |
| #
 | |
| # This program is free software: you can redistribute it and/or modify
 | |
| # it under the terms of the GNU Affero General Public License as
 | |
| # published by the Free Software Foundation, either version 3 of the
 | |
| # License, or (at your option) any later version.
 | |
| #
 | |
| # This program is distributed in the hope that it will be useful,
 | |
| # but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
| # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | |
| # GNU Affero General Public License for more details.
 | |
| #
 | |
| # You should have received a copy of the GNU Affero General Public License
 | |
| # along with this program.  If not, see <https://www.gnu.org/licenses/>.
 | |
| 
 | |
| TREE=${1}
 | |
| 
 | |
| if test "x${TREE}" = "x"; then
 | |
|     TREE=${PWD}
 | |
| fi
 | |
| 
 | |
| if [ -e ${TREE}/nashorn/.hg -o -e ${TREE}/nashorn/merge.changeset ] ; then
 | |
|     NASHORN="nashorn" ;
 | |
| fi
 | |
| 
 | |
| if [ -e ${TREE}/corba/.hg -o -e ${TREE}/corba/merge.changeset ] ; then
 | |
|     CORBA="corba";
 | |
| fi
 | |
| 
 | |
| if [ -e ${TREE}/jaxp/.hg -o -e ${TREE}/jaxp/merge.changeset ] ; then
 | |
|     JAXP="jaxp";
 | |
| fi
 | |
| 
 | |
| if [ -e ${TREE}/jaxws/.hg -o -e ${TREE}/jaxws/merge.changeset ] ; then
 | |
|     JAXWS="jaxws";
 | |
| fi
 | |
| 
 | |
| if [ -e ${TREE}/langtools/.hg -o -e ${TREE}/langtools/merge.changeset ] ; then
 | |
|     LANGTOOLS="langtools";
 | |
| fi
 | |
| 
 | |
| if [ -e ${TREE}/jdk/.hg -o -e ${TREE}/jdk/merge.changeset ] ; then
 | |
|     JDK="jdk";
 | |
| fi
 | |
| 
 | |
| if [ -e ${TREE}/hotspot/.hg -o -e ${TREE}/hotspot/merge.changeset ] ; then
 | |
|     HOTSPOT="hotspot";
 | |
| fi
 | |
| 
 | |
| SUBTREES="${CORBA} ${JAXP} ${JAXWS} ${LANGTOOLS} ${NASHORN} ${JDK} ${HOTSPOT}";
 | |
| echo ${SUBTREES}
 |