You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.3 KiB
34 lines
1.3 KiB
From 9766818f55726cea630b432f09cce8f9c17c014d Mon Sep 17 00:00:00 2001
|
|
From: Andrew Hughes <gnu.andrew@redhat.com>
|
|
Date: Fri, 17 Jan 2025 21:27:58 +0000
|
|
Subject: [PATCH] Tools.gmk: Use update repository on RHEL rather than GA
|
|
|
|
It looks like we were using 7.6 & 7.9 GA repositories rather than
|
|
the latest updates.
|
|
|
|
Resolves: OPENJDK-3589
|
|
---
|
|
make/devkit/Tools.gmk | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/make/devkit/Tools.gmk b/make/devkit/Tools.gmk
|
|
index 07928f69ceb..5b39560ab11 100644
|
|
--- a/make/devkit/Tools.gmk
|
|
+++ b/make/devkit/Tools.gmk
|
|
@@ -64,10 +64,10 @@ ifeq ($(BASE_OS), OL)
|
|
endif
|
|
else ifeq ($(BASE_OS), RHEL)
|
|
ifeq ($(ARCH), aarch64)
|
|
- BASE_URL := https://download.eng.brq.redhat.com/rhel-7/rel-eng/RHEL-7/latest-RHEL-ALT-7/compose/Server/$(ARCH)/os/Packages/
|
|
+ BASE_URL := https://download.eng.brq.redhat.com/rhel-7/rel-eng/updates/RHEL-ALT-7/latest-RHEL-ALT-7/compose/Server/$(ARCH)/os/Packages/
|
|
LINUX_VERSION := RHEL7.6
|
|
else
|
|
- BASE_URL := https://download.eng.brq.redhat.com/rhel-7/rel-eng/RHEL-7/latest-RHEL-7/compose/Server/$(ARCH)/os/Packages/
|
|
+ BASE_URL := https://download.eng.brq.redhat.com/rhel-7/rel-eng/updates/RHEL-7/latest-RHEL-7/compose/Server/$(ARCH)/os/Packages/
|
|
LINUX_VERSION := RHEL7.9
|
|
endif
|
|
else ifeq ($(BASE_OS), Fedora)
|
|
--
|
|
2.45.2
|
|
|