Commit 2d90cb29 authored by Anton Midyukov's avatar Anton Midyukov

regular.mk: fix build regular-jeos on non-x86 architectures

parent 83120c87
......@@ -108,7 +108,12 @@ else
@$(call add,CLEANUP_PACKAGES,bridge-utils)
endif
@$(call add,DEFAULT_SERVICES_DISABLE,fbsetfont)
@$(call add,INSTALL2_PACKAGES,xorg-dri-vmwgfx xorg-dri-virtio)
ifeq (,$(filter-out i586 x86_64,$(ARCH)))
@$(call add,INSTALL2_PACKAGES,xorg-dri-vmwgfx)
endif
ifneq (,$(filter-out e2k%,$(ARCH)))
@$(call add,INSTALL2_PACKAGES,xorg-dri-virtio)
endif
# NB:
# - stock cleanup is not enough (or installer-common-stage3 deps soaring)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment