Skip to content

Commit a068a4d

Browse files
committed
Make the output path absolute
1 parent ef09074 commit a068a4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def run(self):
120120
_write_configure_props()
121121

122122
for lib in dotnet_modules:
123-
output = os.path.join(self.build_lib, lib.args.pop("output"))
123+
output = os.path.join(os.path.abspath(self.build_lib), lib.args.pop("output"))
124124
rename = lib.args.pop("rename", {})
125125

126126
opts = sum(

0 commit comments

Comments
 (0)