manifest: don't take normpath in ManifestProject.__init__

We should be using PurePath comparison if we need to compare paths.

Signed-off-by: Martí Bolívar <marti.bolivar@nordicsemi.no>
This commit is contained in:
Martí Bolívar 2020-02-05 10:31:29 -08:00 committed by Marti Bolivar
parent dbc1a87d84
commit 4f6f060863
1 changed files with 1 additions and 1 deletions

View File

@ -1418,7 +1418,7 @@ class ManifestProject(Project):
self.topdir = topdir
self._abspath = None
self._posixpath = None
self._path = os.path.normpath(path) if path else None
self._path = path
# Extension commands.
self.west_commands = west_commands