aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDawid Wróbel <me@dawidwrobel.com>2021-09-04 02:12:24 +0200
committerGitHub <noreply@github.com>2021-09-03 17:12:24 -0700
commit3fa88493abf8b5e84cdc1ce3ba2e74545ae884ea (patch)
tree5296766ab2a7c98ef4484c2c313e7ab9e404f480 /docs
parenteee72f22e2fd3902921db166fc21f7acb425ba8e (diff)
downloadvcpkg-3fa88493abf8b5e84cdc1ce3ba2e74545ae884ea.tar.gz
vcpkg-3fa88493abf8b5e84cdc1ce3ba2e74545ae884ea.zip
[docs] Fix a typo in CMAKE_DISABLE_FIND_PACKAGE command (#19829)
diff --git a/docs/maintainers/maintainer-guide.md b/docs/maintainers/maintainer-guide.md index b0dd0c4b7..48ea75d08 100644 --- a/docs/maintainers/maintainer-guide.md +++ b/docs/maintainers/maintainer-guide.md @@ -154,7 +154,7 @@ vcpkg_configure_cmake( SOURCE_PATH ${SOURCE_PATH} PREFER_NINJA OPTIONS - -CMAKE_DISABLE_FIND_PACKAGE_ZLIB=${CMAKE_DISABLE_FIND_PACKAGE_ZLIB} + -DCMAKE_DISABLE_FIND_PACKAGE_ZLIB=${CMAKE_DISABLE_FIND_PACKAGE_ZLIB} ) ```
Diffstat (limited to 'docs')
-rw-r--r--docs/maintainers/maintainer-guide.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/maintainers/maintainer-guide.md b/docs/maintainers/maintainer-guide.md
index e459fa366..c2dd9cb72 100644
--- a/docs/maintainers/maintainer-guide.md
+++ b/docs/maintainers/maintainer-guide.md
@@ -157,7 +157,7 @@ vcpkg_configure_cmake(
SOURCE_PATH ${SOURCE_PATH}
PREFER_NINJA
OPTIONS
- -CMAKE_DISABLE_FIND_PACKAGE_ZLIB=${CMAKE_DISABLE_FIND_PACKAGE_ZLIB}
+ -DCMAKE_DISABLE_FIND_PACKAGE_ZLIB=${CMAKE_DISABLE_FIND_PACKAGE_ZLIB}
)
```