From 90274fef20b4a777fa72e96b9d023e575a52b2ea Mon Sep 17 00:00:00 2001 From: q66 Date: Mon, 9 May 2022 04:41:16 +0200 Subject: [PATCH] libvdt: fix template for non-x86 --- srcpkgs/libvdt/template | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/srcpkgs/libvdt/template b/srcpkgs/libvdt/template index 3caa629d6eb..d989e8c7d24 100644 --- a/srcpkgs/libvdt/template +++ b/srcpkgs/libvdt/template @@ -5,7 +5,8 @@ revision=1 wrksrc="vdt-${version}" build_style=cmake case "$XBPS_TARGET_MACHINE" in - aarch64*|arm*) + x86_64*|i686*) ;; + *) configure_args="-DSSE=OFF -DNEON=OFF" make_cmd=make export CMAKE_GENERATOR="Unix Makefiles"