Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2024-04-19 11:17:35 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2024-04-19 11:17:35 +0200
commit1255b1730cb3fa3cf41ae2a9270bdef6a37bd45b (patch)
treee66e71778b14440ba180b3111a3154dde3280cbf
parent587acae751d275da32a03014c69cc93f155e245f (diff)
core/dbus: build on i486 without breaking documentation
-rw-r--r--core/dbus/PKGBUILD11
1 files changed, 11 insertions, 0 deletions
diff --git a/core/dbus/PKGBUILD b/core/dbus/PKGBUILD
new file mode 100644
index 00000000..4123575d
--- /dev/null
+++ b/core/dbus/PKGBUILD
@@ -0,0 +1,11 @@
+# Disable documentation on i486, it just fails everywhere
+if [ "${CARCH}" = "i486" ]; then
+ eval "$(
+ declare -f build | \
+ sed '
+ s/--enable-xml-docs/--disable-xml-docs/
+ s/--enable-doxygen-docs/--disable-doxygen-docs/
+ s/--enable-ducktype-docs/--disable-ducktype-docs/
+ '
+ )"
+fi