Function put to lowercase

This commit is contained in:
Jiri 2023-12-15 15:48:01 +01:00
parent 1d97cec83f
commit 2b512f61b4
1 changed files with 3 additions and 3 deletions

View File

@ -1294,7 +1294,7 @@ function packFullPatchedSources() {
genchecksum ${srcpackagesdir}/%{jdkportablesourcesarchive -- ""}
}
function findGeneratedSources() {
function findgeneratedsources() {
local targetDir=${1}
local targetDirParent=$(dirname ${targetDir})
local builtJdk=${2}
@ -1464,13 +1464,13 @@ for suffix in %{build_loop} ; do
buildjdk ${bootbuilddir} ${systemjdk} "%{bootstrap_targets}" ${debugbuild} ${link_opt} ${debug_symbols}
installjdk ${bootbuilddir} ${bootinstalldir}
buildjdk ${builddir} $(pwd)/${bootinstalldir}/images/%{jdkimage} "${maketargets}" ${debugbuild} ${link_opt} ${debug_symbols}
findGeneratedSources ${installdir} ${builddir} $(pwd)/%{top_level_dir_name}
findgeneratedsources ${installdir} ${builddir} $(pwd)/%{top_level_dir_name}
stripjdk ${builddir}
installjdk ${builddir} ${installdir}
%{!?with_artifacts:rm -rf ${bootinstalldir}}
else
buildjdk ${builddir} ${systemjdk} "${maketargets}" ${debugbuild} ${link_opt} ${debug_symbols}
findGeneratedSources ${installdir} ${builddir} $(pwd)/%{top_level_dir_name}
findgeneratedsources ${installdir} ${builddir} $(pwd)/%{top_level_dir_name}
stripjdk ${builddir}
installjdk ${builddir} ${installdir}
fi