Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/core/libcap
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2023-04-02 10:35:08 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2023-04-02 10:35:08 +0200
commit52a8e1eb00d1f201179c40e084d86028b91fd071 (patch)
tree962fd994e649d968bd662708ff72f988d56482f3 /core/libcap
parentd780bbd9b46c23ebfb52aaf5c215a8db3948acd0 (diff)
core/libcap: disable go on i486/i686
Diffstat (limited to 'core/libcap')
-rw-r--r--core/libcap/PKGBUILD4
1 files changed, 4 insertions, 0 deletions
diff --git a/core/libcap/PKGBUILD b/core/libcap/PKGBUILD
new file mode 100644
index 00000000..59c6fcce
--- /dev/null
+++ b/core/libcap/PKGBUILD
@@ -0,0 +1,4 @@
+# Go is not available on i686 and i486
+if [ "$CARCH" = 'i686' -o "$CARCH" = 'i486' ]; then
+ makedepends=(${makedepends[@]//go/})
+fi