diff options
| author | FantasyGmm <16450052+FantasyGmm@users.noreply.github.com> | 2023-08-22 11:44:43 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-22 11:44:43 +0800 |
| commit | 7e46d6bcc75bbca9462d31694e814b52491308e5 (patch) | |
| tree | 59e0a52b376d81f42a6a9ff966044a94ccf5fa4c | |
| parent | 84643e328df6b194eb4de893b8b5e232af5e2a0c (diff) | |
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 |
