Skip to content

Commit 944a930

Browse files
committed
Make path handling use os.path.join
1 parent 101beb9 commit 944a930

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setupext.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ def set_pkgconfig_path():
263263
if pkgconfig_path is None:
264264
return
265265

266-
pkgconfig_path += '/pkgconfig'
266+
pkgconfig_path = os.path.join(pkgconfig_path, 'pkgconfig')
267267
if not os.path.isdir(pkgconfig_path):
268268
return
269269

0 commit comments

Comments
 (0)