Skip to content

Commit a70b507

Browse files
authored
Merge pull request #2322 from mgxd/fix/linuxlibs
fix: remove ldd flag
2 parents 44b5c17 + 6662086 commit a70b507

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nipype/interfaces/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1485,7 +1485,7 @@ def get_dependencies(name, environ):
14851485
if sys.platform == 'darwin':
14861486
cmd = 'otool -L `which {}`'.format
14871487
elif 'linux' in sys.platform:
1488-
cmd = 'ldd -L `which {}`'.format
1488+
cmd = 'ldd `which {}`'.format
14891489

14901490
if cmd is None:
14911491
return 'Platform %s not supported' % sys.platform

0 commit comments

Comments
 (0)