diff options
author | rubidium <rubidium@openttd.org> | 2008-08-21 00:02:45 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2008-08-21 00:02:45 +0000 |
commit | c4f5d419c02bf03b6e41b30c7c6abe0cd8206ceb (patch) | |
tree | 1a758e62070d12e5dad11e1c9fa6553b9bb28997 /configure | |
parent | 71c44cf7f5a90ebe5a370d0ef20ae92ab40e0f9f (diff) | |
download | openttd-c4f5d419c02bf03b6e41b30c7c6abe0cd8206ceb.tar.xz |
(svn r14117) -Fix: compile failing because the language files can't be copied to the right directory when piping the output because during configure a wrong path would be written in a variable when passing the output into a file under MinGW. You get it? well, I do not.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -17,7 +17,7 @@ ROOT_DIR="`dirname $0`" ROOT_DIR="`cd $ROOT_DIR && pwd`" PWD="`pwd`" -PREFIX="`pwd`/bin" +PREFIX="$PWD/bin" . $ROOT_DIR/config.lib |