diff options
Diffstat (limited to 'emulators/mess/files/sdlmess.in')
-rw-r--r-- | emulators/mess/files/sdlmess.in | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/emulators/mess/files/sdlmess.in b/emulators/mess/files/sdlmess.in deleted file mode 100644 index f0d97316d6f3..000000000000 --- a/emulators/mess/files/sdlmess.in +++ /dev/null @@ -1,16 +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 -# ~/.sdlmess, and create symlinks to the data files. -# - -if [ ! -d ~/.sdlmess ] -then - cd %%DATADIR%% || exit 1 - find * -type d -exec mkdir -p ~/.sdlmess/{} \; - find * -type f -exec ln -s %%DATADIR%%/{} ~/.sdlmess/{} \; 2>/dev/null -fi - -cd ~/.sdlmess || exit 1 -exec %%PREFIX%%/libexec/sdlmess/mess "$@" |