From 69403283bd69e273b937e2eda0e963517f48fb2d Mon Sep 17 00:00:00 2001 From: Tianli Feng Date: Tue, 25 May 2021 15:42:38 -0700 Subject: [PATCH] distribution/packages: Fix RPM architecture name for 64-bit x86 (#620) (#770) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit RPM uses the "x86_64" name for 64-bit x86, which is in-line with GCC and other compilers. Signed-off-by: Neal Gompa Co-authored-by: Neal Gompa (ニール・ゴンパ) --- distribution/packages/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/distribution/packages/build.gradle b/distribution/packages/build.gradle index 48251b9fe31..2891cd634d0 100644 --- a/distribution/packages/build.gradle +++ b/distribution/packages/build.gradle @@ -122,7 +122,7 @@ Closure commonPackageConfig(String type, boolean jdk, String architecture) { } else { assert type == 'rpm' : type if (architecture == 'x64') { - arch('X86_64') + arch('x86_64') } else { assert architecture == 'arm64' : architecture arch('aarch64')