mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
Use correct variable. Also look for libs in MacPorts' default lib path /opt/local/lib, not just HomeBrew's
6 lines
128 B
Bash
Executable File
6 lines
128 B
Bash
Executable File
#!/bin/sh
|
|
dir=`dirname "$0"`
|
|
cd "$dir"
|
|
export DYLD_FALLBACK_LIBRARY_PATH=../Resources:/opt/local/lib
|
|
exec ./fluxengine-gui "$@"
|