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