diff options
author | Luiz Angelo Daros de Luca <luizluca@gmail.com> | 2014-10-04 16:38:53 -0300 |
---|---|---|
committer | Luiz Angelo Daros de Luca <luizluca@gmail.com> | 2014-10-07 14:14:52 -0300 |
commit | 205becb6e8557810f6759372b679b49a96c9a66e (patch) | |
tree | a7302471c711e4736600155dd0ddb65582273ae6 | |
parent | 117b18bbd6fd874c249fc22a6e0b3ce98a9ed080 (diff) |
ruby: Disable doc generation
Docs are not currently packaged. So, there is no need to install
them. Also, doxygen have some problem with the usaged of git in
build_dir as it takes ages running git commands on every file.
Disabling the docs reduces the compilation time.
Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
-rw-r--r-- | lang/ruby/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lang/ruby/Makefile b/lang/ruby/Makefile index 7e3a792c4..c540e7792 100644 --- a/lang/ruby/Makefile +++ b/lang/ruby/Makefile @@ -16,7 +16,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=ruby PKG_VERSION:=2.1.2 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_LIBVER:=2.1 @@ -210,6 +210,8 @@ CONFIGURE_ARGS += \ --enable-static \ --disable-rpath \ --enable-ipv6 \ + --disable-install-doc \ + --disable-install-capi \ --with-ruby-version=minor \ --with-iconv-dir=$(ICONV_PREFIX) \ |