summaryrefslogtreecommitdiff
path: root/nsfb
diff options
context:
space:
mode:
Diffstat (limited to 'nsfb')
-rwxr-xr-xnsfb25
1 files changed, 0 insertions, 25 deletions
diff --git a/nsfb b/nsfb
deleted file mode 100755
index 15ee0aa50..000000000
--- a/nsfb
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/sh
-# This file is part of NetSurf, http://netsurf-browser.org/
-# Licensed under the GNU General Public License,
-# http://www.opensource.org/licenses/gpl-license
-# Copyright 2007 Rob Kendrick <rjek@netsurf-browser.org>
-
-if [ -d ~/.netsurf ]; then
- LOG=~/.netsurf/log.txt
-elif [ -d /tmp ]; then
- LOG=/tmp/netsurf-log.txt
-else
- LOG=netsurf-log.txt
-fi
-
-if [ -x $(dirname $0)/nsfb-sdl ]; then
-TYPE=-sdl
-elif [ -x $(dirname $0)/nsfb-linux ]; then
-TYPE=-linux
-elif [ -x $(dirname $0)/nsfb-dummy ]; then
-TYPE=-dummy
-fi
-
-NETSURFRES=$(dirname $0)/framebuffer/res/
-export NETSURFRES
-exec $(dirname $0)/nsfb${TYPE} "$@" 2>$LOG