diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2011-11-27 22:16:40 +0100 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2011-11-27 22:16:40 +0100 |
commit | e4c61e5ea4b09bf112c94b86cde78784476c4014 (patch) | |
tree | 8a2a9cdcef6a34c70eefbc613a4a915b5f54649c /package | |
parent | 4dc18dc51495079c15c81877ec862ab54992b691 (diff) |
ruby: really disable ncurses/readline for host
Commit 150124b (ruby: fix host build breakage) tried to fix host-ruby
build failures by disabling ncurses/readline extensions, but the
ruby configure script doesn't understand --without-ncurses /
--without-readline arguments, so the commit didn't do anything.
Fix it by really disabling them using the --with-out-ext argument.
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package')
-rw-r--r-- | package/ruby/ruby.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/ruby/ruby.mk b/package/ruby/ruby.mk index ad791f8f4..d99fd1ee5 100644 --- a/package/ruby/ruby.mk +++ b/package/ruby/ruby.mk @@ -11,7 +11,7 @@ HOST_RUBY_AUTORECONF = YES RUBY_DEPENDENCIES = host-ruby RUBY_MAKE_ENV = $(TARGET_MAKE_ENV) RUBY_CONF_OPT = --disable-install-doc --disable-rpath -HOST_RUBY_CONF_OPT = --disable-install-doc --without-ncurses --without-readline +HOST_RUBY_CONF_OPT = --disable-install-doc --with-out-ext=curses,readline # Force optionals to build before we do ifeq ($(BR2_PACKAGE_BERKELEYDB),y) |