diff options
author | Andreas Baumann <mail@andreasbaumann.cc> | 2021-08-20 07:57:37 +0200 |
---|---|---|
committer | Andreas Baumann <mail@andreasbaumann.cc> | 2021-08-20 07:57:37 +0200 |
commit | 7e7e0f534d915ea38ccf6b02f6c885f154deabf2 (patch) | |
tree | 8499b1e59061156ed6597db86d061db855dc1498 /extra/libevdev/PKGBUILD | |
parent | 550e32878f7e92726f085564c8447f95a550eb8e (diff) | |
download | packages-7e7e0f534d915ea38ccf6b02f6c885f154deabf2.tar.xz |
extra/libevdev: remove valgrind only on i486
Diffstat (limited to 'extra/libevdev/PKGBUILD')
-rw-r--r-- | extra/libevdev/PKGBUILD | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/extra/libevdev/PKGBUILD b/extra/libevdev/PKGBUILD index 28e687ae..66fbe2fc 100644 --- a/extra/libevdev/PKGBUILD +++ b/extra/libevdev/PKGBUILD @@ -1,3 +1,5 @@ # valgrind no longer supports i486 (configuire tests for the binary, # no explicit configure option available) -makedepends=(${makedepends[@]//valgrind/}) +if [ "$CARCH" = 'i486' ]; then + makedepends=(${makedepends[@]//valgrind/}) +fi |