Skip to content

Commit

Permalink
Add support for Windows Redist DLL as Adoptium DevKit
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Leonard <anleonar@redhat.com>
  • Loading branch information
andrew-m-leonard committed Oct 8, 2024
1 parent 6e390bb commit e26159d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sbin/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,11 @@ configureDevKitConfigureParameter() {
# ARCHITECTURE is set to the "target" architecture by caller, or defaults to build architecture if not set
local dll_arch
if [[ "${ARCHITECTURE}" == "x86-32" ]]; then
dll_arch = "x86"
dll_arch="x86"
elif [[ "${ARCHITECTURE}" == "aarch64" ]]; then
dll_arch = "arm64"
dll_arch="arm64"
else
dll_arch = "x64"
dll_arch="x64"
fi

# Add Windows Redist DLL paths
Expand Down

0 comments on commit e26159d

Please sign in to comment.