summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--doc/contributing.rdoc2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 7b2046fbd9..441d581235 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Fri Sep 4 17:46:17 2015 SHIBATA Hiroshi <hsbt@ruby-lang.org>
+
+ * doc/contributing.rdoc: fix configuration option.
+ [ci skip] [fix GH-1009]
+
Fri Sep 4 04:46:54 2015 Koichi Sasada <ko1@atdot.net>
* iseq.c (iseq_memsize): functions for wrapper object should have
diff --git a/doc/contributing.rdoc b/doc/contributing.rdoc
index 46322ba0f0..7be8cc2275 100644
--- a/doc/contributing.rdoc
+++ b/doc/contributing.rdoc
@@ -312,7 +312,7 @@ Now let's build CRuby:
autoconf
mkdir build && cd build # its good practice to build outside of source dir
mkdir ~/.rubies # we will install to .rubies/ruby-trunk in our home dir
- ../configure --prefix="$HOME/.rubies/ruby-trunk"
+ ../configure --prefix="${HOME}/.rubies/ruby-trunk"
make && make install
After adding Ruby to your PATH, you should be ready to run the test suite: