Don't use `os.path.relpath` in dist command

This is problematic when we meson is installed in the different 
root(say C:) while building from another root(say D:).
This is how it is done in mesonpep517 and causes problems
because of that.
This commit is contained in:
Naveen M K 2021-05-29 19:03:11 +05:30 committed by Jussi Pakkanen
parent c6ec13e6bf
commit 7a6ad2953a
1 changed files with 1 additions and 1 deletions

View File

@ -313,5 +313,5 @@ def run(options):
if rc == 0:
for name in names:
create_hash(name)
print('Created', os.path.relpath(name))
print('Created', name)
return rc