vm.mk: fixed thinko regarding lilo arches

A classic brown paper bag bug: this was typed in a hospital
and that commit was a sick one indeed, the condition should
have been the opposite.

Reported-by: Ildar Mulyukov <ildar@altlinux.org>
Closes: #31982
This commit is contained in:
Michael Shigorin 2016-04-15 16:13:55 +03:00
parent 3efa389326
commit b214d5c18e

View File

@ -8,7 +8,7 @@ ifeq (vm,$(IMAGE_CLASS))
vm/.bare: profile/bare
@$(call add,BASE_PACKAGES,interactivesystem shadow-utils e2fsprogs)
ifeq (,$(filter i586 x86_64,$(ARCH))) # useless on anything else
ifeq (,$(filter-out i586 x86_64,$(ARCH))) # useless on anything else
@$(call add,BASE_PACKAGES,lilo)
endif