aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2018-02-09 08:33:43 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2018-02-09 08:33:43 +0200
commita5cba0baade34b30d10c2d7f3e00e9dc79a9fa72 (patch)
treeff764611488ed3fac6df0894e989d642c14daa32
parent3f3c5ea23052151f46526965e799ebcacc4abee4 (diff)
Adjust installation documentation to use '--for install' options
-rw-r--r--BOOTSTRAP-MINGW.cli4
-rw-r--r--BOOTSTRAP-MSVC.cli4
-rw-r--r--BOOTSTRAP-UNIX.cli4
-rw-r--r--UPGRADE.cli6
4 files changed, 9 insertions, 9 deletions
diff --git a/BOOTSTRAP-MINGW.cli b/BOOTSTRAP-MINGW.cli
index 7617f61..8350b8d 100644
--- a/BOOTSTRAP-MINGW.cli
+++ b/BOOTSTRAP-MINGW.cli
@@ -101,7 +101,7 @@ Then, we rebuild the build system with the result of Phase 1 linking
libraries statically.
\
-> build2\b-boot config.cxx=g++ config.bin.lib=static
+> build2\b-boot config.cxx=g++ config.bin.lib=static build2\exe{b}
> move /y build2\b.exe build2\b-boot.exe
> build2\b-boot --version
@@ -184,7 +184,7 @@ Next, we add the package repository, build, and install:
\
> bpkg-stage add https://pkg.cppget.org/1/alpha
> bpkg-stage fetch
-> bpkg-stage build build2 bpkg
+> bpkg-stage build --for install build2 bpkg
> bpkg-stage install build2 bpkg
\
diff --git a/BOOTSTRAP-MSVC.cli b/BOOTSTRAP-MSVC.cli
index ad4f05f..c741f1e 100644
--- a/BOOTSTRAP-MSVC.cli
+++ b/BOOTSTRAP-MSVC.cli
@@ -73,7 +73,7 @@ Then, we rebuild the build system with the result of Phase 1 linking libraries
statically.
\
-> build2\b-boot config.cxx=cl config.bin.lib=static
+> build2\b-boot config.cxx=cl config.bin.lib=static build2\exe{b}
> move /y build2\b.exe build2\b-boot.exe
> build2\b-boot --version
@@ -156,7 +156,7 @@ Next, we add the package repository, build, and install:
\
> bpkg-stage add https://pkg.cppget.org/1/alpha
> bpkg-stage fetch
-> bpkg-stage build build2 bpkg
+> bpkg-stage build --for install build2 bpkg
> bpkg-stage install build2 bpkg
\
diff --git a/BOOTSTRAP-UNIX.cli b/BOOTSTRAP-UNIX.cli
index d3b0f6d..40c70db 100644
--- a/BOOTSTRAP-UNIX.cli
+++ b/BOOTSTRAP-UNIX.cli
@@ -142,7 +142,7 @@ Then, we rebuild the build system with the result of Phase 1 linking
libraries statically.
\
-$ build2/b-boot config.cxx=g++ config.bin.lib=static
+$ build2/b-boot config.cxx=g++ config.bin.lib=static build2/exe{b}
$ mv build2/b build2/b-boot
$ build2/b-boot --version
@@ -255,7 +255,7 @@ Next, we add the package repository, build, and install:
\
$ bpkg-stage add https://pkg.cppget.org/1/alpha
$ bpkg-stage fetch
-$ bpkg-stage build build2 bpkg
+$ bpkg-stage build --for install build2 bpkg
$ bpkg-stage install build2 bpkg
\
diff --git a/UPGRADE.cli b/UPGRADE.cli
index bdaa319..9a9c1ac 100644
--- a/UPGRADE.cli
+++ b/UPGRADE.cli
@@ -36,7 +36,7 @@ The dirty upgrade is fairly simple:
\
$ cd build2-toolchain-X.Y
$ bpkg fetch
-$ bpkg build build2 bpkg
+$ bpkg build --for install build2 bpkg
$ bpkg install build2 bpkg
\
@@ -49,7 +49,7 @@ explicitly, for example:
$ bpkg status build2 bpkg
build2: configured 1.0.0; available 1.0.1 2.0.0
bpkg: configured 1.0.0; available 1.0.1 2.0.0
-$ bpkg build build2/1.0.1 bpkg/1.0.1
+$ bpkg build --for install build2/1.0.1 bpkg/1.0.1
\
The staged upgrade consists of several steps:
@@ -99,7 +99,7 @@ configuration and install the toolchain with the \c{-stage} suffix:
\
$ cd build2-toolchain-X.Z
-$ bpkg build build2 bpkg
+$ bpkg build --for install build2 bpkg
$ bpkg install \
config.bin.suffix=-stage \
config.install.data_root=root/stage \