From 1dedceb10e6090fae3014afa02c5658d33c47ae8 Mon Sep 17 00:00:00 2001 From: Joseph Wayne Norton Date: Thu, 22 Nov 2012 15:33:29 +0900 Subject: [PATCH] Update documentation --- priv/doc/src/ubf/ubf-user-guide.en.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/priv/doc/src/ubf/ubf-user-guide.en.txt b/priv/doc/src/ubf/ubf-user-guide.en.txt index 97fdb95..ccf4cc7 100644 --- a/priv/doc/src/ubf/ubf-user-guide.en.txt +++ b/priv/doc/src/ubf/ubf-user-guide.en.txt @@ -1455,7 +1455,7 @@ Git (Mandatory):: * Anonymous read-only access using the GIT protocol is default. * Team members having read-write access should add his/her ssh public key under your GitHub account. -Python (Optional):: +Python (Mandatory):: - Python - http://www.python.org * *Python 2.4 or newer, Python 2.7.2 has been tested most recently (CAUTION: Python 3.x might be too new)* @@ -1671,35 +1671,35 @@ your own Erlang/OTP system. + ------ $ cd working-directory-name -$ wget http://www.erlang.org/download/otp_src_R15B.tar.gz +$ wget http://www.erlang.org/download/otp_src_R15B02.tar.gz ------ + .. Untar the source code for your Erlang/OTP system. + ------ $ cd working-directory-name -$ tar -xzf otp_src_R15B.tar.gz +$ tar -xzf otp_src_R15B02.tar.gz ------ + . Building _basic recipe_ .. Change to your working directory and configure Erlang/OTP + ------ -$ cd working-directory-name/otp_src_R15B +$ cd working-directory-name/otp_src_R15B02 $ ./configure --prefix=otp-installing-directory-name ------ + .. Build Erlang/OTP + ------ -$ cd working-directory-name/otp_src_R15B +$ cd working-directory-name/otp_src_R15B02 $ make ------ + . Installing _basic recipe_ + ------ -$ cd working-directory-name/otp_src_R15B +$ cd working-directory-name/otp_src_R15B02 $ sudo make install ------