From 5e83100aa47a7e0ffe23ed87fd7df914693cb708 Mon Sep 17 00:00:00 2001 From: Josh Curl Date: Fri, 1 Apr 2016 10:08:32 -0700 Subject: [PATCH] Only get VirtualBox modules for amd64 --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 6c3edf74..902d4e5a 100644 --- a/Makefile +++ b/Makefile @@ -32,7 +32,11 @@ assets/selinux/policy.29: assets/modules.tar.gz: mkdir -p $(dir $@) +ifeq "$(ARCH)" "amd64" curl -L "$(VBOX_MODULES_URL)" > $@ +else + touch $@ +endif ifdef COMPILED_KERNEL_URL