summaryrefslogtreecommitdiffstats
path: root/network/opera/opera
diff options
context:
space:
mode:
Diffstat (limited to 'network/opera/opera')
-rw-r--r--network/opera/opera19
1 files changed, 0 insertions, 19 deletions
diff --git a/network/opera/opera b/network/opera/opera
deleted file mode 100644
index e9035deb3c..0000000000
--- a/network/opera/opera
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/bash
-
-# Allow users to override command-line options
-# Based on Gentoo's chromium package (and by extension, Debian's)
-
-if [[ -f /etc/opera/default ]]; then
- . /etc/opera/default
-fi
-
-# Prefer user defined CHROMIUM_USER_FLAGS (from env) over system
-# default CHROMIUM_FLAGS (from /etc/chromium/default)
-
-OPERA_FLAGS=${OPERA_USER_FLAGS:-$OPERA_FLAGS}
-
-if [ "$ARCH" = "x86_64" ]; then
- exec /usr/lib64/opera/opera $OPERA_FLAGS "$@"
-else
- exec /usr/lib/opera/opera $OPERA_FLAGS "$@"
-fi