Skip to content

Commit 10303a5

Browse files
authored
Merge pull request #26 from smartfile/arg-compat
Use more compatible argument syntax
2 parents c1ecaa6 + fa2deb7 commit 10303a5

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)