From eff129404bed53d4fa859586452e9290d51561ca Mon Sep 17 00:00:00 2001 From: david22swan Date: Wed, 17 Jul 2024 15:12:27 +0100 Subject: [PATCH] (CAT-1903) Add support for RedHat 8 and 9 AARCH architecture to the PDK Update the git component so that a line rejecting `dh-autoreconf` as a dependency when building for RedHat 8 and 9 will do the same when building against their AARCH architecture versions. --- configs/components/git.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/components/git.rb b/configs/components/git.rb index f875f41ca..e90014602 100644 --- a/configs/components/git.rb +++ b/configs/components/git.rb @@ -48,7 +48,7 @@ ] end - if platform.name == 'el-8-x86_64' || platform.name == 'el-9-x86_64' + if platform.name.match(/^el\-(?:8|9)\-(?:x86_64|aarch64)/) build_deps.reject! { |r| r == 'dh-autoreconf' } end