diff --git a/.github/workflows/build-cross-compile.yml b/.github/workflows/build-cross-compile.yml index 5aadaab05c9..351d087ef7d 100644 --- a/.github/workflows/build-cross-compile.yml +++ b/.github/workflows/build-cross-compile.yml @@ -64,26 +64,26 @@ jobs: gnu-arch: aarch64 debian-arch: arm64 debian-repository: https://httpredir.debian.org/debian/ - debian-version: bullseye + debian-version: bookworm tolerate-sysroot-errors: false - target-cpu: arm gnu-arch: arm debian-arch: armhf debian-repository: https://httpredir.debian.org/debian/ - debian-version: bullseye + debian-version: bookworm tolerate-sysroot-errors: false gnu-abi: eabihf - target-cpu: s390x gnu-arch: s390x debian-arch: s390x debian-repository: https://httpredir.debian.org/debian/ - debian-version: bullseye + debian-version: bookworm tolerate-sysroot-errors: false - target-cpu: ppc64le gnu-arch: powerpc64le debian-arch: ppc64el debian-repository: https://httpredir.debian.org/debian/ - debian-version: bullseye + debian-version: bookworm tolerate-sysroot-errors: false - target-cpu: riscv64 gnu-arch: riscv64 diff --git a/doc/building.html b/doc/building.html index da8465bc532..f7af2648592 100644 --- a/doc/building.html +++ b/doc/building.html @@ -1491,12 +1491,12 @@ following targets are known to work:
-BASE_OS must be one of "OEL6" for Oracle Enterprise
-Linux 6 or "Fedora" (if not specified "OEL6" will be the default). If
-the base OS is "Fedora" the corresponding Fedora release can be
-specified with the help of the BASE_OS_VERSION option (with
-"27" as default version). If the build is successful, the new devkits
-can be found in the build/devkit/result subdirectory:
BASE_OS must be one of OL for Oracle
+Enterprise Linux or Fedora. If the base OS is
+Fedora the corresponding Fedora release can be specified
+with the help of the BASE_OS_VERSION option. If the build
+is successful, the new devkits can be found in the
+build/devkit/result subdirectory:
cd make/devkit
make TARGETS="ppc64le-linux-gnu aarch64-linux-gnu" BASE_OS=Fedora BASE_OS_VERSION=21
ls -1 ../../build/devkit/result/
diff --git a/doc/building.md b/doc/building.md
index 1a9fe6b2e78..32c6ae46540 100644
--- a/doc/building.md
+++ b/doc/building.md
@@ -1285,12 +1285,10 @@ at least the following targets are known to work:
| ppc64le-linux-gnu |
| s390x-linux-gnu |
-`BASE_OS` must be one of "OEL6" for Oracle Enterprise Linux 6 or "Fedora" (if
-not specified "OEL6" will be the default). If the base OS is "Fedora" the
-corresponding Fedora release can be specified with the help of the
-`BASE_OS_VERSION` option (with "27" as default version). If the build is
-successful, the new devkits can be found in the `build/devkit/result`
-subdirectory:
+`BASE_OS` must be one of `OL` for Oracle Enterprise Linux or `Fedora`. If the
+base OS is `Fedora` the corresponding Fedora release can be specified with the
+help of the `BASE_OS_VERSION` option. If the build is successful, the new
+devkits can be found in the `build/devkit/result` subdirectory:
```
cd make/devkit
diff --git a/make/CompileJavaModules.gmk b/make/CompileJavaModules.gmk
index 1e26fb2b529..c6e8fab3038 100644
--- a/make/CompileJavaModules.gmk
+++ b/make/CompileJavaModules.gmk
@@ -85,7 +85,7 @@ CreateHkTargets = \
################################################################################
# Include module specific build settings
-THIS_SNIPPET := modules/$(MODULE)/Java.gmk
+THIS_SNIPPET := $(call GetModuleSnippetName, Java)
ifneq ($(wildcard $(THIS_SNIPPET)), )
include MakeSnippetStart.gmk
diff --git a/make/CreateJmods.gmk b/make/CreateJmods.gmk
index 40bceda69a9..a26042fb0d5 100644
--- a/make/CreateJmods.gmk
+++ b/make/CreateJmods.gmk
@@ -184,7 +184,7 @@ endif
################################################################################
# Include module specific build settings
-THIS_SNIPPET := modules/$(MODULE)/Jmod.gmk
+THIS_SNIPPET := $(call GetModuleSnippetName, Jmod)
ifneq ($(wildcard $(THIS_SNIPPET)), )
include MakeSnippetStart.gmk
diff --git a/make/Docs.gmk b/make/Docs.gmk
index 1fcc8575d2c..8b20572cb03 100644
--- a/make/Docs.gmk
+++ b/make/Docs.gmk
@@ -236,8 +236,8 @@ define create_overview_file
#
ifneq ($$($1_GROUPS), )
$1_OVERVIEW_TEXT += \
- This document is divided into \
- $$(subst 2,two,$$(subst 3,three,$$(words $$($1_GROUPS)))) sections:
\
+ This document has \
+ $$(subst 2,two,$$(subst 3,three,$$(words $$($1_GROUPS)))) major sections:
\
\
#
$1_OVERVIEW_TEXT += $$(foreach g, $$($1_GROUPS), \
@@ -246,7 +246,10 @@ define create_overview_file
)
$1_OVERVIEW_TEXT += \
\
- #
+ Related documents specify the Java \
+ programming language, the Java Virtual Machine, various protocols and file \
+ formats pertaining to the Java platform, and tools included in the JDK.
\
+ #
endif
$1_OVERVIEW_TEXT += \