Skip to content

Commit

Permalink
Don't use os.path.relpath in dist command
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
naveen521kk authored and jpakkane committed May 29, 2021
1 parent c6ec13e commit 7a6ad29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mesonbuild/mdist.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 7a6ad29

Please sign in to comment.