From b214d5c18e35aecf1bf673eab8a32316a14adb3f Mon Sep 17 00:00:00 2001 From: Michael Shigorin Date: Fri, 15 Apr 2016 16:13:55 +0300 Subject: [PATCH] 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 Closes: #31982 --- lib/vm.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vm.mk b/lib/vm.mk index f70ad8f..ac16ce2 100644 --- a/lib/vm.mk +++ b/lib/vm.mk @@ -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 -- 2.7.4