23 lines
292 B
Text
23 lines
292 B
Text
|
#!/bin/sh
|
||
|
|
||
|
if [ -n "$5" ]; then
|
||
|
ELFTYPE=`brandelf $5`
|
||
|
elif [ -n "$4" ]; then
|
||
|
ELFTYPE=`brandelf $4`
|
||
|
elif [ -n "$3" ]; then
|
||
|
ELFTYPE=`brandelf $3`
|
||
|
fi
|
||
|
|
||
|
WRAPPER="freebsd"
|
||
|
|
||
|
case "${ELFTYPE}" in
|
||
|
*SVR4*|*Linux*)
|
||
|
if [ -x "$0.linux" ]; then
|
||
|
WRAPPER="linux"
|
||
|
fi
|
||
|
;;
|
||
|
esac
|
||
|
|
||
|
exec $0.$WRAPPER $@
|
||
|
|