Skip to content

Commit

Permalink
package_mrtrix get rid of static warning as scripts trigger it as well
Browse files Browse the repository at this point in the history
  • Loading branch information
maxpietsch committed May 10, 2017
1 parent f062d3d commit 62caeca
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions package_mrtrix
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,7 @@ EOF
LIBS=$(for n in bin/*; do ldd $n; done | sed 's/(.*)$//g' | sed 's/^.*=>//g' | sort | uniq | grep -v 'mrtrix\|vdso\|libGL.so\|libEGL.so\|nvidia\|fglrx' | xargs)
echo ' libraries identified:'
for n in $LIBS; do
if [ ! -e $n ]; then
echo "warning: not all executables have dynamic libraries. Possibly skipping dependent libraries for some commands. This is expected if you built with -static";
else
if [ -e $n ]; then
echo ' '$n;
cp $n _package/mrtrix3/lib/
fi
Expand Down

0 comments on commit 62caeca

Please sign in to comment.