summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorArnstein Ressem <aressem@gmail.com>2017-11-03 13:08:45 +0100
committerGitHub <noreply@github.com>2017-11-03 13:08:45 +0100
commit48e5b49d2bd0b2e0fc6086328c00dc0ffd898f03 (patch)
tree20996a1d74798f6f8550f1cccbdde19d020ef5f1 /README.md
parent3b9510271a5cb3ca0e1b2040ab85b2a308974040 (diff)
Revert "Revert "Various minor fixes to bootstrap scripts""
Diffstat (limited to 'README.md')
-rw-r--r--README.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/README.md b/README.md
index 37ceb44ccfd..97c4bf69bc3 100644
--- a/README.md
+++ b/README.md
@@ -28,14 +28,15 @@ You can also setup CentOS 7 natively and install the following build dependencie
### Build Java modules
export MAVEN_OPTS="-Xms128m -Xmx512m"
- sh bootstrap.sh java
+ source /opt/rh/rh-maven33/enable
+ bash bootstrap.sh java
mvn -T <num-threads> install
### Build C++ modules
Replace `<build-dir>` with the name of the directory in which you'd like to build Vespa.
Replace `<source-dir>` with the directory in which you've cloned/unpacked the source tree.
- sh bootstrap-cpp.sh <source-dir> <build-dir>
+ bash bootstrap-cpp.sh <source-dir> <build-dir>
cd <build-dir>
make -j <num-threads>
ctest3 -j <num-threads>