diff --git a/srcpkgs/util-linux/template b/srcpkgs/util-linux/template index b2b83468c8..8b3d9f24f0 100644 --- a/srcpkgs/util-linux/template +++ b/srcpkgs/util-linux/template @@ -39,7 +39,14 @@ do_configure() { --enable-write --localstatedir=/run } do_build() { - make ${makejobs} + if [ "$XBPS_TARGET_MACHINE" = "i686" ]; then + # XXX + export CCACHE_DISABLED=1 + make ${makejobs} + unset CCACHE_DISABLED + else + make ${makejobs} + fi } do_install() { make usrsbin_execdir=/usr/bin DESTDIR=${DESTDIR} install