diff options
author | Jingyun Hua <huajingyun@loongson.cn> | 2024-08-06 07:24:12 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2024-08-06 08:15:52 +0000 |
commit | 01b33360fca02c068ce526b07acdf9b01a326dcc (patch) | |
tree | 2a4ed694de8d1e6f7b3b065be728f1c365786445 | |
parent | d11263146336d1ac4e655477287265f8ab40400f (diff) | |
download | aports-01b33360fca02c068ce526b07acdf9b01a326dcc.zip |
main/abuild: disable dt_relr for loongarch64
Enabling dt_relr will cause Rust and related aports to fail
These flags are not fully supported yet
-rw-r--r-- | main/abuild/APKBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/abuild/APKBUILD b/main/abuild/APKBUILD index f12068bb8ca..e026b304b14 100644 --- a/main/abuild/APKBUILD +++ b/main/abuild/APKBUILD @@ -2,7 +2,7 @@ pkgname=abuild pkgver=3.13.0 _ver=${pkgver%_git*} -pkgrel=4 +pkgrel=5 pkgdesc="Script to build Alpine Packages" url="https://git.alpinelinux.org/cgit/abuild/" arch="all" @@ -56,7 +56,7 @@ package() { install -m 644 abuild.conf "$pkgdir"/etc/abuild.conf case "$CARCH" in - aarch64|loongarch64|x86*|ppc64le) + aarch64|x86*|ppc64le) # binutils only supports it here cat >>"$pkgdir"/usr/share/abuild/default.conf <<-EOF |