Skip to content

Commit

Permalink
pathconv: don't skip arguments with double quote
Browse files Browse the repository at this point in the history
It is used to pass strings/paths to the preprocessor and breaks
for example the CPython build. For example -DPREFIX='"/ucrt64"'.

Fixes msys2#190
  • Loading branch information
lazka committed Feb 10, 2024
1 parent 76fd7ea commit 3e658ce
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion winsup/cygwin/msys2_path_conv.cc
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,6 @@ path_type find_path_start_and_type(const char** src, int recurse, const char* en
switch (*it) {
case '`':
case '\'':
case '"':
case '*':
case '?':
case '[':
Expand Down

0 comments on commit 3e658ce

Please sign in to comment.