mirror of
https://github.com/lucaspalomodevelop/meshlab.git
synced 2026-03-13 08:09:39 +00:00
10 lines
356 B
Bash
10 lines
356 B
Bash
#!/bin/bash
|
|
#this script is necessary only for the u3d exporter.
|
|
#libIFX has its own library loader, which does not consider
|
|
#the runpath set in the meshlab binary. It looks only the
|
|
#LD_LIBRARY_PATH variable.
|
|
|
|
HERE="$(dirname "$(readlink -f "${0}")")"
|
|
export LD_LIBRARY_PATH=${HERE}/usr/lib/meshlab:$LD_LIBRARY_PATH
|
|
exec "${HERE}/usr/bin/meshlab" "$@"
|