ruby-changes:67920
From: Kazuhiro <ko1@a...>
Date: Sat, 11 Sep 2021 12:30:54 +0900 (JST)
Subject: [ruby-changes:67920] 6f35a4e526 (master): Use `./autogen.sh` instead of `autoconf` in doc
https://git.ruby-lang.org/ruby.git/commit/?id=6f35a4e526 From 6f35a4e526c38e8c1f561a623488f836a5c84119 Mon Sep 17 00:00:00 2001 From: Kazuhiro NISHIYAMA <zn@m...> Date: Sat, 11 Sep 2021 12:29:59 +0900 Subject: Use `./autogen.sh` instead of `autoconf` in doc --- doc/contributing.rdoc | 2 +- doc/make_cheatsheet.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/contributing.rdoc b/doc/contributing.rdoc index d739562..2b7bc5e 100644 --- a/doc/contributing.rdoc +++ b/doc/contributing.rdoc @@ -265,7 +265,7 @@ Now let's build CRuby: https://github.com/ruby/ruby/blob/trunk/doc/contributing.rdoc#L265 * Generate the configuration files and build: cd ruby-master - autoconf + ./autogen.sh mkdir build && cd build # its good practice to build outside of source dir mkdir ~/.rubies # we will install to .rubies/ruby-master in our home dir ../configure --prefix="${HOME}/.rubies/ruby-master" diff --git a/doc/make_cheatsheet.md b/doc/make_cheatsheet.md index bf245be..6b056a4 100644 --- a/doc/make_cheatsheet.md +++ b/doc/make_cheatsheet.md @@ -6,7 +6,7 @@ If you are a user of Ruby, please see README.md. https://github.com/ruby/ruby/blob/trunk/doc/make_cheatsheet.md#L6 ## In-place build ``` -$ autoconf +$ ./autogen.sh $ ./configure --prefix=$PWD/local $ make $ make install @@ -17,7 +17,7 @@ Hello https://github.com/ruby/ruby/blob/trunk/doc/make_cheatsheet.md#L17 ## Out-of-place build ``` -$ autoconf +$ ./autogen.sh $ mkdir ../ruby-build $ cd ../ruby-build $ ../ruby-src/configure --prefix=$PWD/local @@ -100,7 +100,7 @@ $ make test-bundler BUNDLER_SPECS=commands/exec_spec.rb:58 https://github.com/ruby/ruby/blob/trunk/doc/make_cheatsheet.md#L100 You need to be able to use gcc (gcov) and lcov visualizer. ``` -$ autoconf +$ ./autogen.sh $ ./configure --enable-gcov $ make $ make update-coverage -- cgit v1.1 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/