aboutsummaryrefslogtreecommitdiffstats
path: root/www/opera/files/operapluginwrapper
blob: bb5e450c222013608f5d4c7d74acd93725b3f65a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh

if [ -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 $@