aboutsummaryrefslogtreecommitdiff
path: root/docs/examples
diff options
context:
space:
mode:
authorMichael Kelley <michael.a.kelley@gmail.com>2020-03-20 16:37:09 -0700
committerGitHub <noreply@github.com>2020-03-20 16:37:09 -0700
commita5a244f5bdc390fc1c3d42e126e0bfd80541f060 (patch)
tree3ec01d2b670bab3ed4e5556940f6aa53df727f5c /docs/examples
parent056e9517ec7c461cdfabe8ff73124325708a4723 (diff)
downloadvcpkg-a5a244f5bdc390fc1c3d42e126e0bfd80541f060.tar.gz
vcpkg-a5a244f5bdc390fc1c3d42e126e0bfd80541f060.zip
Correct parameter reference (#10472)
- Change references to --overlay-ports to --overlay-triplets
Diffstat (limited to 'docs/examples')
-rw-r--r--docs/examples/overlay-triplets-linux-dynamic.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/examples/overlay-triplets-linux-dynamic.md b/docs/examples/overlay-triplets-linux-dynamic.md
index b2868e2fd..7d0540927 100644
--- a/docs/examples/overlay-triplets-linux-dynamic.md
+++ b/docs/examples/overlay-triplets-linux-dynamic.md
@@ -71,7 +71,7 @@ When using the `--overlay-triplets` option, a message like the following lets yo
As you may have noticed, the default triplets for Windows (`x86-windows` and `x64-windows`) install dynamic libraries, while a suffix (`-static`) is needed for static libraries. This is different with Linux and Mac OS where static libraries are built by `x64-linux` and `x64-osx`.
-Using `--overlay-ports` it is possible to override the default triplets to accomplish the same behavior on Linux:
+Using `--overlay-triplets` it is possible to override the default triplets to accomplish the same behavior on Linux:
* `x64-linux`: Builds dynamic libraries,
* `x64-linux-static`: Builds static libraries.
@@ -85,7 +85,7 @@ Using the custom triplet created in the previous example, rename `custom-triplet
~/git$ cp vcpkg/triplets/x64-linux.cmake custom-triplets/x64-linux-static.cmake
```
-### Step 2: Use `--overlay-ports` to override default triplets
+### Step 2: Use `--overlay-triplets` to override default triplets
Use the `--overlay-triplets` option to include the triplets in the `custom-triplets` directory.