summaryrefslogtreecommitdiff
path: root/odin-run.in
blob: cd848469379cf6d92adbdc445651ce49f5ebb061 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

prefix=@prefix@
exec_prefix=@exec_prefix@
lib=@libdir@/odin/lwp.so
if [ -n "$LD_PRELOAD" ]; then
    LD_PRELOAD=$lib:$LD_PRELOAD
else
    LD_PRELOAD=$lib
fi
export LD_PRELOAD

LWP_PATH=$1
export LWP_PATH

shift
exec "$@"