Skip to content

Commit a5b5bd3

Browse files
Merge tag 'jdk-22+17' into labsjdk/automation-9-29-2023-2505
Added tag jdk-22+17 for changeset edcc559
2 parents 2f28877 + edcc559 commit a5b5bd3

File tree

411 files changed

+14963
-2403
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

411 files changed

+14963
-2403
lines changed

make/JrtfsJar.gmk

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2014, 2022, Oracle and/or its affiliates. All rights reserved.
2+
# Copyright (c) 2014, 2023, Oracle and/or its affiliates. All rights reserved.
33
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
#
55
# This code is free software; you can redistribute it and/or modify it
@@ -46,8 +46,10 @@ JIMAGE_PKGS := \
4646
jdk/internal/jrtfs \
4747
#
4848

49+
# Compile jrt-fs.jar with the interim compiler, as it
50+
# ends up in the image, this will ensure reproducible classes
4951
$(eval $(call SetupJavaCompilation, BUILD_JRTFS, \
50-
COMPILER := bootjdk, \
52+
COMPILER := interim, \
5153
DISABLED_WARNINGS := options, \
5254
TARGET_RELEASE := $(TARGET_RELEASE_JDK8), \
5355
SRC := $(TOPDIR)/src/java.base/share/classes, \

make/autoconf/basic.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -479,7 +479,7 @@ AC_DEFUN([BASIC_CHECK_DIR_ON_LOCAL_DISK],
479479
# df on AIX does not understand -l. On modern AIXes it understands "-T local" which
480480
# is the same. On older AIXes we just continue to live with a "not local build" warning.
481481
if test "x$OPENJDK_TARGET_OS" = xaix; then
482-
if "$DF -T local > /dev/null 2>&1"; then
482+
if $DF -T local > /dev/null 2>&1; then
483483
DF_LOCAL_ONLY_OPTION='-T local'
484484
else # AIX may use GNU-utils instead
485485
DF_LOCAL_ONLY_OPTION='-l'

0 commit comments

Comments
 (0)