aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorras0219 <533828+ras0219@users.noreply.github.com>2020-12-07 18:17:19 -0800
committerGitHub <noreply@github.com>2020-12-07 18:17:19 -0800
commitdd4421808cc9131a0a68e71d9c41b0b6b9ce06d3 (patch)
treedea4a8afd788b8e21d3c2a5a02b2a62ba54bb08a /docs
parentced334b24dfc992ab0d1fd3af803dbf20481be25 (diff)
downloadvcpkg-dd4421808cc9131a0a68e71d9c41b0b6b9ce06d3.tar.gz
vcpkg-dd4421808cc9131a0a68e71d9c41b0b6b9ce06d3.zip
[vcpkg_fixup_pkgconfig] Handle spaces in path, do not validate individual libraries (#13126)
Diffstat (limited to 'docs')
-rw-r--r--docs/maintainers/vcpkg_fixup_pkgconfig.md21
1 files changed, 11 insertions, 10 deletions
diff --git a/docs/maintainers/vcpkg_fixup_pkgconfig.md b/docs/maintainers/vcpkg_fixup_pkgconfig.md
index 48870e972..70b4fb124 100644
--- a/docs/maintainers/vcpkg_fixup_pkgconfig.md
+++ b/docs/maintainers/vcpkg_fixup_pkgconfig.md
@@ -7,8 +7,6 @@ Fix common paths in *.pc files and make everything relativ to $(prefix)
vcpkg_fixup_pkgconfig(
[RELEASE_FILES <PATHS>...]
[DEBUG_FILES <PATHS>...]
- [SYSTEM_LIBRARIES <NAMES>...]
- [IGNORE_FLAGS <FLAGS>]
[SKIP_CHECK]
)
```
@@ -22,21 +20,24 @@ Defaults to every *.pc file in the folder ${CURRENT_PACKAGES_DIR} without ${CURR
Specifies a list of files to apply the fixes for debug paths.
Defaults to every *.pc file in the folder ${CURRENT_PACKAGES_DIR}/debug/
-### SYSTEM_LIBRARIES
-If the *.pc file contains system libraries outside vcpkg these need to be listed here.
-VCPKG checks every -l flag for the existence of the required library within vcpkg.
+### SKIP_CHECK
+Skips the library checks in vcpkg_fixup_pkgconfig. Only use if the script itself has unhandled cases.
-### IGNORE_FLAGS
-If the *.pc file contains flags in the lib field which are not libraries. These can be listed here
+### SYSTEM_PACKAGES (deprecated)
+This argument has been deprecated and has no effect.
-### SKIP_CHECK
-Skips the library checks in vcpkg_fixup_pkgconfig. Only use if the script itself has unhandled cases.
+### SYSTEM_LIBRARIES (deprecated)
+This argument has been deprecated and has no effect.
+
+### IGNORE_FLAGS (deprecated)
+This argument has been deprecated and has no effect.
## Notes
Still work in progress. If there are more cases which can be handled here feel free to add them
## Examples
-Just call `vcpkg_fixup_pkgconfig()` after any install step which installs *.pc files.
+
+* [brotli](https://github.com/Microsoft/vcpkg/blob/master/ports/brotli/portfile.cmake)
## Source
[scripts/cmake/vcpkg_fixup_pkgconfig.cmake](https://github.com/Microsoft/vcpkg/blob/master/scripts/cmake/vcpkg_fixup_pkgconfig.cmake)