summaryrefslogtreecommitdiff
path: root/extra
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2021-05-08 21:20:06 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2021-05-08 21:20:06 +0200
commit26d630708f2458fa17729947733f7f5190fd61a0 (patch)
tree855129830d7f0bc74b1965586d14fb15bba890d8 /extra
parent919d5be8c64d7a416b48a1baf1379c99bc3113c8 (diff)
downloadpackages-26d630708f2458fa17729947733f7f5190fd61a0.tar.xz
extra/protobuf: do not complain about failing tests on i486
Diffstat (limited to 'extra')
-rw-r--r--extra/protobuf/PKGBUILD11
1 files changed, 11 insertions, 0 deletions
diff --git a/extra/protobuf/PKGBUILD b/extra/protobuf/PKGBUILD
new file mode 100644
index 00000000..dcdd1c77
--- /dev/null
+++ b/extra/protobuf/PKGBUILD
@@ -0,0 +1,11 @@
+# ignore failing tests on i486
+if [ "$CARCH" = 'i486' ]; then
+ eval "$(
+ declare -f check | \
+ sed '
+ s@make check \(.*\)@( make check \1) || true@
+ s@python setup.py test@python setup.py test || true@
+ '
+ )
+ "
+fi