Commit de2c7009 authored by Anton Midyukov's avatar Anton Midyukov

grub/generate.mk: don't add language selection menu if $(LOCALES) is one word

parent 695ad82d
......@@ -26,8 +26,10 @@ GRUB_CFG := $(GRUB_CFG) gfxterm
endif
ifneq (,$(LOCALES))
ifneq ($(words $(LOCALES)),1)
GRUB_CFG := $(GRUB_CFG) lang
endif
endif
ifneq (,$(KFLAVOURS))
ifneq ($(words $(KFLAVOURS)),1)
......
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