diff options
author | Tomas Chvatal <tchvatal@suse.cz> | 2011-08-12 14:19:17 +0200 |
---|---|---|
committer | Tomas Chvatal <tchvatal@suse.cz> | 2011-08-12 14:19:17 +0200 |
commit | 667a47d2541d4d6cbe18d40051c2011dbf239b3c (patch) | |
tree | 7d7719c4614e705c3675247b21a645c059d87e50 /sys-boot/grub/grub-1.99.ebuild | |
parent | [sys-boot/grub] disable nls as it causes issues on some setups. better safe t... (diff) | |
download | scarabeus-667a47d2541d4d6cbe18d40051c2011dbf239b3c.tar.gz scarabeus-667a47d2541d4d6cbe18d40051c2011dbf239b3c.tar.bz2 scarabeus-667a47d2541d4d6cbe18d40051c2011dbf239b3c.zip |
Revert "[sys-boot/grub] disable nls as it causes issues on some setups. better safe than sorry."
This reverts commit de9cd56dbca81cbfd79ae1ac55bde244aeb12e9e.
Diffstat (limited to 'sys-boot/grub/grub-1.99.ebuild')
-rw-r--r-- | sys-boot/grub/grub-1.99.ebuild | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys-boot/grub/grub-1.99.ebuild b/sys-boot/grub/grub-1.99.ebuild index 343ae88..f3e2eb8 100644 --- a/sys-boot/grub/grub-1.99.ebuild +++ b/sys-boot/grub/grub-1.99.ebuild @@ -24,7 +24,7 @@ HOMEPAGE="http://www.gnu.org/software/grub/" LICENSE="GPL-3" SLOT="2" [[ ${PV} != "9999" ]] && KEYWORDS="~amd64 ~x86 ~mips ~ppc ~ppc64" -IUSE="custom-cflags debug device-mapper static sdl truetype" +IUSE="custom-cflags debug device-mapper nls static sdl truetype" GRUB_PLATFORMS="coreboot efi-32 efi-64 emu ieee1275 multiboot pc qemu qemu-mips yeeloong" # everywhere: @@ -148,10 +148,8 @@ grub_src_configure() { fi fi - # nls: cause various issues on boot, rather disable ECONF_SOURCE="${WORKDIR}/${P}/" \ econf \ - --disable-nls \ --disable-werror \ --sbindir=/sbin \ --bindir=/bin \ @@ -159,6 +157,7 @@ grub_src_configure() { --disable-efiemu \ $(use_enable device-mapper) \ $(use_enable truetype grub-mkfont) \ + $(use_enable nls) \ $(use_enable debug mm-debug) \ $(use sdl && use_enable debug grub-emu-sdl) \ $(use_enable debug grub-emu-usb) \ |