mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-28 11:21:12 +08:00
[vcpkg] fix missing " around path include (#9912)
* fix missing " around path * Update VERSION.txt * [vcpkg] Add quotes to include() in generated dep info file Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
This commit is contained in:
parent
1fd6cc945d
commit
d12f839d2e
@ -1 +1 @@
|
||||
"2020.01.18"
|
||||
"2020.02.04"
|
||||
|
@ -18,7 +18,7 @@ namespace vcpkg::CMakeVars
|
||||
Files::Filesystem& fs = paths.get_filesystem();
|
||||
static int tag_extract_id = 0;
|
||||
|
||||
std::string extraction_file("include(" + get_tags_path.generic_u8string() + ")\n\n");
|
||||
std::string extraction_file("include(\"" + get_tags_path.generic_u8string() + "\")\n\n");
|
||||
|
||||
std::map<Triplet, int> emitted_triplets;
|
||||
int emitted_triplet_id = 0;
|
||||
@ -67,7 +67,7 @@ namespace vcpkg::CMakeVars
|
||||
static int dep_info_id = 0;
|
||||
Files::Filesystem& fs = paths.get_filesystem();
|
||||
|
||||
std::string extraction_file("include(" + get_dep_info_path.generic_u8string() + ")\n\n");
|
||||
std::string extraction_file("include(\"" + get_dep_info_path.generic_u8string() + "\")\n\n");
|
||||
|
||||
std::map<Triplet, int> emitted_triplets;
|
||||
int emitted_triplet_id = 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user