aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Reimer2011-05-01 23:44:20 +0200
committerKlaus Reimer2011-05-01 23:48:39 +0200
commitec05f3dc4f4cf9632e749b02e54cf3aaa2842cae (patch)
tree78d0d9a7a9c94e58531a859deffd4743f9c250fc
parent1d1ee5c9793b96858d53c006c8448ffe288b100f (diff)
downloadscummvm-rg350-ec05f3dc4f4cf9632e749b02e54cf3aaa2842cae.tar.gz
scummvm-rg350-ec05f3dc4f4cf9632e749b02e54cf3aaa2842cae.tar.bz2
scummvm-rg350-ec05f3dc4f4cf9632e749b02e54cf3aaa2842cae.zip
WEBOS: No longer creating paths which are not used anymore.
-rwxr-xr-xdists/webos/mojo/start10
1 files changed, 0 insertions, 10 deletions
diff --git a/dists/webos/mojo/start b/dists/webos/mojo/start
index 3bdb9a59d8..446ce83f1d 100755
--- a/dists/webos/mojo/start
+++ b/dists/webos/mojo/start
@@ -4,14 +4,10 @@
APPDIR=$(readlink -f $(dirname $0))
SCUMMVMDIR=/media/internal/ScummVM
-
# Create the initial ScummVM directory structure
mkdir -p $SCUMMVMDIR/Games
mkdir -p $SCUMMVMDIR/Saves
mkdir -p $SCUMMVMDIR/Screenshots
-mkdir -p $SCUMMVMDIR/Themes
-mkdir -p $SCUMMVMDIR/Extras
-mkdir -p $SCUMMVMDIR/Plugins
# Install default configuration file if not already present
if [ ! -f $SCUMMVMDIR/scummvmrc ]
@@ -19,14 +15,8 @@ then
cp $APPDIR/scummvmrc-default $SCUMMVMDIR/scummvmrc
fi
-# Copy themes to theme directory
-cp -f $APPDIR/share/scummvm/*.zip $SCUMMVMDIR/Themes
-
# Change into the screenshots directory so screenshots are saved there
cd $SCUMMVMDIR/Screenshots
-# Set library path so the app finds its custom shared libraries
-export LD_LIBRARY_PATH=$APPDIR/lib
-
# Run the game
exec $APPDIR/bin/scummvm -c $SCUMMVMDIR/scummvmrc