diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 2008-12-19 21:12:36 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 2008-12-19 21:12:36 +0000 |
commit | 616aaf4b1fc83a87f7a49e0e81e8f7c9db6dbcad (patch) | |
tree | eca5ff8ef89030731d682a14daebcc8cbd2245ac /emulators/sdlmame-devel/files/sdlmame.in | |
parent | 856c5bf9f133ae5d553d972d5a940586d3f56048 (diff) |
This commit was manufactured by cvs2svn to create tag 'RELEASE_7_1_0'.release/7.1.0
Notes
Notes:
svn path=/head/; revision=224474
svn path=/tags/RELEASE_7_1_0/; revision=224475; tag=release/7.1.0
Diffstat (limited to 'emulators/sdlmame-devel/files/sdlmame.in')
-rw-r--r-- | emulators/sdlmame-devel/files/sdlmame.in | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/emulators/sdlmame-devel/files/sdlmame.in b/emulators/sdlmame-devel/files/sdlmame.in deleted file mode 100644 index 099cea29a2f8..000000000000 --- a/emulators/sdlmame-devel/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 "$@" |