summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorArnstein Ressem <aressem@gmail.com>2017-11-03 12:51:11 +0100
committerGitHub <noreply@github.com>2017-11-03 12:51:11 +0100
commit9a50736f6a42200e1ebcd50896e382e649d45b78 (patch)
treee28cc0c5d0b33bd78027bfc79caa2016fb03f7e1 /README.md
parent0df471cf727460575258c9af3e42be4ddbb344f3 (diff)
Revert "Various minor fixes to bootstrap scripts"
Diffstat (limited to 'README.md')
-rw-r--r--README.md5
1 files changed, 2 insertions, 3 deletions
diff --git a/README.md b/README.md
index 97c4bf69bc3..37ceb44ccfd 100644
--- a/README.md
+++ b/README.md
@@ -28,15 +28,14 @@ You can also setup CentOS 7 natively and install the following build dependencie
### Build Java modules
export MAVEN_OPTS="-Xms128m -Xmx512m"
- source /opt/rh/rh-maven33/enable
- bash bootstrap.sh java
+ sh 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.
- bash bootstrap-cpp.sh <source-dir> <build-dir>
+ sh bootstrap-cpp.sh <source-dir> <build-dir>
cd <build-dir>
make -j <num-threads>
ctest3 -j <num-threads>