diff --git a/nipype/interfaces/base.py b/nipype/interfaces/base.py index ba398352a0..752cb0e86e 100644 --- a/nipype/interfaces/base.py +++ b/nipype/interfaces/base.py @@ -1485,7 +1485,7 @@ def get_dependencies(name, environ): if sys.platform == 'darwin': cmd = 'otool -L `which {}`'.format elif 'linux' in sys.platform: - cmd = 'ldd -L `which {}`'.format + cmd = 'ldd `which {}`'.format if cmd is None: return 'Platform %s not supported' % sys.platform