libroot_build: Use "=" instead of "+=" for clarity's sake.

No functional change.
This commit is contained in:
Augustin Cavalier 2021-09-06 17:01:25 -04:00
parent 86b6d54b46
commit 2e8023b371

View File

@ -266,7 +266,7 @@ normalize_dir_path(const char *path, string &normalizedPath)
if (getcwd(pwd, sizeof(pwd)) == NULL)
return B_ERROR;
normalizedPath += pwd;
normalizedPath = pwd;
}
const char *end = &path[pathLen];