GC unused file (forgotten in r307068).

Feature safe:	yes
This commit is contained in:
Alexey Dokuchaev 2012-11-07 13:41:52 +00:00
parent d63bc49b7d
commit 14413ac876
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=307134

View file

@ -1,20 +0,0 @@
#!/bin/sh
# The executable needs to run from a directory with the Doom Legacy data
# files, libraries and executables. So we mirror the Doom Legacy data
# directory to ~/.doomlegacy, and create symlinks to the data files.
DOOMWADDIR="%%DMDIR%%"; export DOOMWADDIR
if [ -d ~/.doomlegacy ]
then
echo "Using existing ~/.doomlegacy directory."
else
echo "Creating ~/.doomlegacy directory."
cd %%DATADIR%% || exit 1
mkdir -p ~/.doomlegacy
ln -s %%DATADIR%%/* ~/.doomlegacy
fi
cd ~/.doomlegacy || exit 1
exec ./lsdldoom -nocheckwadversion "$@"