From a5a244f5bdc390fc1c3d42e126e0bfd80541f060 Mon Sep 17 00:00:00 2001 From: Michael Kelley Date: Fri, 20 Mar 2020 16:37:09 -0700 Subject: [PATCH] Correct parameter reference (#10472) - Change references to --overlay-ports to --overlay-triplets --- docs/examples/overlay-triplets-linux-dynamic.md | 4 ++-- 1 file 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.