summaryrefslogtreecommitdiff
path: root/www/opera-devel/files/operapluginwrapper
diff options
context:
space:
mode:
Diffstat (limited to 'www/opera-devel/files/operapluginwrapper')
-rw-r--r--www/opera-devel/files/operapluginwrapper22
1 files changed, 0 insertions, 22 deletions
diff --git a/www/opera-devel/files/operapluginwrapper b/www/opera-devel/files/operapluginwrapper
deleted file mode 100644
index fcec17e85d80..000000000000
--- a/www/opera-devel/files/operapluginwrapper
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/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 $@
-