Fix debian/rules syntax for arm64 build.

This commit is contained in:
Steve Langasek 2019-02-10 21:09:00 -08:00
parent 2fab563a95
commit cebae05a6d
2 changed files with 3 additions and 1 deletions

1
debian/changelog vendored
View File

@ -2,6 +2,7 @@ shim (15+1533136590.3beb971-2) UNRELEASED; urgency=medium
* Update debian/watch.
* Update VCS to point to salsa.
* Fix debian/rules syntax for arm64 build.
-- Steve Langasek <vorlon@debian.org> Sun, 10 Feb 2019 00:15:19 -0800

3
debian/rules vendored
View File

@ -14,7 +14,8 @@ endif
ifeq ($(DEB_HOST_ARCH),amd64)
export EFI_ARCH := x64
else ($(DEB_HOST_ARCH),arm64)
endif
ifeq ($(DEB_HOST_ARCH),arm64)
export EFI_ARCH := aa64
endif