summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorKazuhiro NISHIYAMA <zn@mbf.nifty.com>2021-09-11 12:29:59 +0900
committerKazuhiro NISHIYAMA <zn@mbf.nifty.com>2021-09-11 12:29:59 +0900
commit6f35a4e526c38e8c1f561a623488f836a5c84119 (patch)
treed4b08b123997fcc865413d527956a310b62c61dd /doc
parentb1789294695432557fbb79d5ba522c2eaa5b968d (diff)
Use `./autogen.sh` instead of `autoconf` in doc
Diffstat (limited to 'doc')
-rw-r--r--doc/contributing.rdoc2
-rw-r--r--doc/make_cheatsheet.md6
2 files changed, 4 insertions, 4 deletions
diff --git a/doc/contributing.rdoc b/doc/contributing.rdoc
index d7395627ca..2b7bc5e36f 100644
--- a/doc/contributing.rdoc
+++ b/doc/contributing.rdoc
@@ -265,7 +265,7 @@ Now let's build CRuby:
* 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 bf245bea03..6b056a4f0b 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.
## In-place build
```
-$ autoconf
+$ ./autogen.sh
$ ./configure --prefix=$PWD/local
$ make
$ make install
@@ -17,7 +17,7 @@ Hello
## 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
You need to be able to use gcc (gcov) and lcov visualizer.
```
-$ autoconf
+$ ./autogen.sh
$ ./configure --enable-gcov
$ make
$ make update-coverage