diff options
| author | ras0219 <533828+ras0219@users.noreply.github.com> | 2020-07-13 12:12:48 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-13 12:12:48 -0700 |
| commit | 18c77502708006e957a9fe6690782a154102df58 (patch) | |
| tree | 3795deca18e12826de604512d08bf13d394e7045 /scripts | |
| parent | 7b3eea9481991425286feb7a53ab420e6e6c13a2 (diff) | |
| download | vcpkg-18c77502708006e957a9fe6690782a154102df58.tar.gz vcpkg-18c77502708006e957a9fe6690782a154102df58.zip | |
[vcpkg] Improve informational message for `--editable` while cleaning sources (#12366)
* [vcpkg] Improve informational message for --editable while cleaning sources
* [vcpkg] Update scripts/cmake/vcpkg_extract_source_archive_ex.cmake
Co-authored-by: nicole mazzuca <mazzucan@outlook.com>
Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
Co-authored-by: nicole mazzuca <mazzucan@outlook.com>
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/cmake/vcpkg_extract_source_archive_ex.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/cmake/vcpkg_extract_source_archive_ex.cmake b/scripts/cmake/vcpkg_extract_source_archive_ex.cmake index 411000bf8..9ce5047a2 100644 --- a/scripts/cmake/vcpkg_extract_source_archive_ex.cmake +++ b/scripts/cmake/vcpkg_extract_source_archive_ex.cmake @@ -104,7 +104,7 @@ function(vcpkg_extract_source_archive_ex) if (NOT _VCPKG_EDITABLE)
string(APPEND SOURCE_PATH ".clean")
if(EXISTS ${SOURCE_PATH})
- message(STATUS "Cleaning sources at ${SOURCE_PATH}. Pass --editable to vcpkg to reuse sources.")
+ message(STATUS "Cleaning sources at ${SOURCE_PATH}. Use --editable to skip cleaning for the packages you specify.")
file(REMOVE_RECURSE ${SOURCE_PATH})
endif()
endif()
|
