Skip to content

Commit fa2deb7

Browse files
committed
Use more compatible argument syntax
1 parent c1ecaa6 commit fa2deb7

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
@@ -79,7 +79,7 @@ def build_extension(self, ext):
7979

8080
if libarchivePrefix:
8181
extra_compile_args = ['-I{0}/include'.format(libarchivePrefix)]
82-
extra_link_args = ['-Wl,-rpath={0}/lib'.format(libarchivePrefix)]
82+
extra_link_args = ['-Wl,-rpath,{0}/lib'.format(libarchivePrefix)]
8383
environ['LDFLAGS'] = '-L{0}/lib {1}'.format(libarchivePrefix, environ.get('LDFLAGS', ''))
8484
else:
8585
extra_compile_args = []

0 commit comments

Comments
 (0)