From: Gustavo Zacarias Date: Fri, 25 Nov 2011 11:35:11 +0000 (-0300) Subject: ruby: fix build breakage X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=fc11bb0ab4db4c44f50b8985b5d1a6f7ca7f5b84;p=buildroot.git ruby: fix build breakage Fix build breakage regarding invalid file format of /usr/lib/libpthread.so This is because ruby has rpath enabled by default and was throwing in the runtime paths and pulling in host libraries into the mix. So disable rpath. Signed-off-by: Gustavo Zacarias Signed-off-by: Peter Korsgaard --- diff --git a/package/ruby/ruby.mk b/package/ruby/ruby.mk index 34953336fd..a34a2512ab 100644 --- a/package/ruby/ruby.mk +++ b/package/ruby/ruby.mk @@ -10,7 +10,7 @@ RUBY_AUTORECONF = YES HOST_RUBY_AUTORECONF = YES RUBY_DEPENDENCIES = host-ruby RUBY_MAKE_ENV = $(TARGET_MAKE_ENV) -RUBY_CONF_OPT = --disable-install-doc +RUBY_CONF_OPT = --disable-install-doc --disable-rpath HOST_RUBY_CONF_OPT = --disable-install-doc