From 048a0bd415ca2fe047d580eb9f060ca84c17863a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Thu, 3 Aug 2023 15:52:13 +0700 Subject: [PATCH] rav1e: disable auditable on builder --- srcpkgs/rav1e/template | 3 +++ 1 file changed, 3 insertions(+) diff --git a/srcpkgs/rav1e/template b/srcpkgs/rav1e/template index 7e169a2af9d..28d403af015 100644 --- a/srcpkgs/rav1e/template +++ b/srcpkgs/rav1e/template @@ -16,12 +16,15 @@ case "$XBPS_TARGET_MACHINE" in esac post_build() { + # 32 bit off_t, no idea how to widen it + if [ "$XBPS_WORDSIZE" = 32 ]; then return; fi cargo auditable cbuild --release --target ${RUST_TARGET} \ --library-type cdylib --library-type staticlib \ --destdir="${DESTDIR}" --prefix="/usr" ${configure_args} } post_install() { + if [ "$XBPS_WORDSIZE" = 32 ]; then return; fi cargo auditable cinstall --release --target ${RUST_TARGET} \ --library-type cdylib --library-type staticlib \ --destdir="${DESTDIR}" --prefix="/usr" --offline --locked ${configure_args}