CONFIGURE_OPTS="--disable-install-rdoc" rbenv install 3.2.0
not working
#2122
-
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
You should use |
Beta Was this translation helpful? Give feedback.
-
For the record and for future people finding this post after having trouble with this option, I recently encountered a similar error while compiling Ruby 3.1.2 on Ubuntu 24.04.1 LTS (recently updated). The log file contained this error message:
I tried with Seems to be working fine for me now with: $ RUBY_CONFIGURE_OPTS="--disable-install-doc" rbenv install 3.1.2 If you already have option like me, you can separate them by spaces as long as you put quotes outside the variable: $ RUBY_CONFIGURE_OPTS="--with-jemalloc --disable-install-doc" rbenv install 3.1.2 |
Beta Was this translation helpful? Give feedback.
You should use
--disable-install-doc
instead of--disable-install-rdoc
.