mirror of
https://github.com/boostorg/build.git
synced 2026-02-14 12:42:11 +00:00
Make it work, for extra benefit ('=' vs '==' bug)
[SVN r39830]
This commit is contained in:
@@ -1339,8 +1339,8 @@ LIST *builtin_normalize_path( PARSE *parse, FRAME *frame )
|
||||
and we want this function to obtain canonic representation. */
|
||||
for (current = in->value, end = in->value + in->size;
|
||||
current < end; ++current)
|
||||
if (*current = '\\')
|
||||
* current = '/';
|
||||
if (*current == '\\')
|
||||
*current = '/';
|
||||
|
||||
|
||||
end = in->value + in->size - 1;
|
||||
|
||||
Reference in New Issue
Block a user