From 18c77502708006e957a9fe6690782a154102df58 Mon Sep 17 00:00:00 2001 From: ras0219 <533828+ras0219@users.noreply.github.com> Date: Mon, 13 Jul 2020 12:12:48 -0700 Subject: [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 Co-authored-by: Robert Schumacher Co-authored-by: nicole mazzuca --- scripts/cmake/vcpkg_extract_source_archive_ex.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts') 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() -- cgit v1.2.3