diff options
author | Nicolas Thill <nico@openwrt.org> | 2010-05-04 14:49:49 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2010-05-04 14:49:49 +0000 |
commit | 98af872a32e530441318bba1b73ed15152db8c83 (patch) | |
tree | 12829ed98487bd59dd562e0b466808dd5a5ed735 /package/grub | |
parent | bc4ae75a7d991f024b1b19f7e1ee070b62064c32 (diff) | |
download | upstream-98af872a32e530441318bba1b73ed15152db8c83.tar.gz upstream-98af872a32e530441318bba1b73ed15152db8c83.tar.bz2 upstream-98af872a32e530441318bba1b73ed15152db8c83.zip |
package/grub: only disable graphics on host grub
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21353 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/grub')
-rw-r--r-- | package/grub/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/grub/Makefile b/package/grub/Makefile index e401770805..221269ba41 100644 --- a/package/grub/Makefile +++ b/package/grub/Makefile @@ -34,7 +34,6 @@ endef MY_CONFIGURE_ARGS += \ --disable-auto-linux-mem-opt \ - --disable-graphics \ --disable-hercules \ --without-curses \ @@ -50,6 +49,7 @@ HOST_CFLAGS += $(call host-cc-option,-U_FORTIFY_SOURCE) HOST_CONFIGURE_ARGS += $(MY_CONFIGURE_ARGS) \ --sbindir="$(STAGING_DIR_HOST)/bin" \ + --disable-graphics \ HOST_CONFIGURE_VARS += $(MY_CONFIGURE_VARS) |