diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 2008-02-24 03:11:57 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 2008-02-24 03:11:57 +0000 |
commit | fa4a943c17e47bf910596a414fd7287983350b9b (patch) | |
tree | dc76cec18a505befc330e612e0a56bf1caa5ca49 /games/redeclipse/files/sauer_server.in | |
parent | 07bcc4091010f79f8d929d6ce22e51c7e3743b3f (diff) |
Notes
Diffstat (limited to 'games/redeclipse/files/sauer_server.in')
-rw-r--r-- | games/redeclipse/files/sauer_server.in | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/games/redeclipse/files/sauer_server.in b/games/redeclipse/files/sauer_server.in deleted file mode 100644 index 672564b86865..000000000000 --- a/games/redeclipse/files/sauer_server.in +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/sh - -# The executable needs to be run from its data directory, and needs to store -# configuration in it. We therefore mirror the data directory hierarchy in -# ~/.sauerbraten, and create symlinks to the data files. - -if [ -d ~/.sauerbraten ] -then - echo "Using existing ~/.sauerbraten directory." -else - echo "Creating ~/.sauerbraten directory." - cd %%DATADIR%% || exit 1 - find * -type d -exec mkdir -p ~/.sauerbraten/{} \; - find * -type f -exec ln -s %%DATADIR%%/{} ~/.sauerbraten/{} \; 2>/dev/null -fi - -cd ~/.sauerbraten || exit 1 -exec %%PREFIX%%/libexec/sauer_server "$@" |