diff options
author | psykose <alice@ayaya.dev> | 2023-01-16 10:56:09 +0000 |
---|---|---|
committer | psykose <alice@ayaya.dev> | 2023-01-16 11:56:09 +0100 |
commit | e8a41966737b011cc1f89ae1ecc98810647759f8 (patch) | |
tree | 9149c75457f98ee136fb79cd0637c5c794256f0c | |
parent | 800fa7628478b346aae54d6c0a87464d24f4af5c (diff) | |
download | aports-e8a41966737b011cc1f89ae1ecc98810647759f8.tar.gz aports-e8a41966737b011cc1f89ae1ecc98810647759f8.tar.bz2 aports-e8a41966737b011cc1f89ae1ecc98810647759f8.tar.xz |
community/xorg-server: readd no-error=array-bounds
needed for 32-bit
-rw-r--r-- | community/xorg-server/APKBUILD | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/community/xorg-server/APKBUILD b/community/xorg-server/APKBUILD index 2a8fbc0c4c7..c8d2fc08787 100644 --- a/community/xorg-server/APKBUILD +++ b/community/xorg-server/APKBUILD @@ -120,6 +120,9 @@ build() { export LDFLAGS="$LDFLAGS -Wl,-z,lazy" _fontroot="/usr/share/fonts" + # 32-bit fails otherwise + export CFLAGS="$CFLAGS -Wno-error=array-bounds" + abuild-meson \ -Dxorg=true \ -Dxephyr=true \ |