From 66620869187dfcb58c568863db3e9c5b4467ae3b Mon Sep 17 00:00:00 2001 From: mathiasg Date: Fri, 1 Dec 2017 15:14:29 -0500 Subject: [PATCH] fix: remove ldd flag --- nipype/interfaces/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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