diff options
| author | Claus Vium <cvium@users.noreply.github.com> | 2023-08-25 10:44:51 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-25 10:44:51 +0200 |
| commit | 3ee1141a06d41ac080cd5fd6b2253e1ed23d675e (patch) | |
| tree | b38baf20947cbc486f7c728e1a6945afa66256d4 | |
| parent | b48a7c0f856292f9cde683052540a256456ed262 (diff) | |
| parent | 7e46d6bcc75bbca9462d31694e814b52491308e5 (diff) | |
Merge pull request #10139 from FantasyGmm/master
Fix debian/ubuntu arm64 build error,runtime argument missing
| -rwxr-xr-x | debian/rules | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/debian/rules b/debian/rules index f55b1807e..069d48aad 100755 --- a/debian/rules +++ b/debian/rules @@ -25,6 +25,10 @@ ifeq ($(HOST_ARCH),arm64) # Building ARM DOTNETRUNTIME := debian-arm64 endif +ifeq ($(HOST_ARCH),aarch64) + # Building ARM + DOTNETRUNTIME := debian-arm64 +endif export DH_VERBOSE=1 export DOTNET_CLI_TELEMETRY_OPTOUT=1 |
