aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-09-05 15:13:22 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-09-05 15:13:22 +0200
commitaa952634b84cf9c7faf22ccd06926a2e4f0bfb3f (patch)
tree3d65fdac8d13c5568ad3abdc3f8b743f3c85afcd
parent5babbccb7fabdbd2ae733c985dae971d75741a66 (diff)
Add doc fixes
-rw-r--r--BOOTSTRAP-MINGW.cli4
-rw-r--r--BOOTSTRAP-MSVC.cli2
-rw-r--r--BOOTSTRAP-UNIX.cli4
-rw-r--r--UPGRADE.cli2
4 files changed, 6 insertions, 6 deletions
diff --git a/BOOTSTRAP-MINGW.cli b/BOOTSTRAP-MINGW.cli
index 75a1c49..f1ffc1b 100644
--- a/BOOTSTRAP-MINGW.cli
+++ b/BOOTSTRAP-MINGW.cli
@@ -15,13 +15,13 @@ For example, if your MinGW distribution is in \c{C:\\mingw\\}, then you could
run it (from the command prompt that we have started earlier) like this:
\
-> build-mingw.bat C:\mingw\bin\g++
+> .\build-mingw.bat C:\mingw\bin\g++
\
If you are using the \c{build2-mingw} package then you should be able to
use just \c{g++} for the compiler:
\
-> build-mingw.bat g++
+> .\build-mingw.bat g++
\
"
diff --git a/BOOTSTRAP-MSVC.cli b/BOOTSTRAP-MSVC.cli
index 36b666e..ea10c74 100644
--- a/BOOTSTRAP-MSVC.cli
+++ b/BOOTSTRAP-MSVC.cli
@@ -24,6 +24,6 @@ For example, you could run thsi batch file (from the above-mentioned command
prompt) like this:
\
-> build-msvc.bat
+> .\build-msvc.bat
\
"
diff --git a/BOOTSTRAP-UNIX.cli b/BOOTSTRAP-UNIX.cli
index 53c4b43..7b1a125 100644
--- a/BOOTSTRAP-UNIX.cli
+++ b/BOOTSTRAP-UNIX.cli
@@ -69,12 +69,12 @@ For example, this command will use \c{g++-5} and install the toolchain into
\c{/usr/local/}.
\
-$ build.sh g++-5
+$ ./build.sh g++-5
\
While this will use Clang and install into \c{/opt/build2}:
\
-$ build.sh --install-dir /opt/build2 --sudo sudo clang++
+$ ./build.sh --install-dir /opt/build2 --sudo sudo clang++
\
"
diff --git a/UPGRADE.cli b/UPGRADE.cli
index 5c07bf3..257f38e 100644
--- a/UPGRADE.cli
+++ b/UPGRADE.cli
@@ -62,7 +62,7 @@ cleanly uninstall the old toolchain.
\
$ rm -r build2-toolchain-old
-$ cp -r build2-toolchain build2-toolchain-old
+$ cp -rp build2-toolchain build2-toolchain-old
\
Or, using Windows command prompt: