Changeset - r9962:288ef297f5e3
[Not reviewed]
master
0 1 0
rubidium - 16 years ago 2008-08-21 00:02:45
rubidium@openttd.org
(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.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
configure
Show inline comments
 
@@ -14,13 +14,13 @@ if [ "$0" != "$CONFIGURE_EXECUTABLE" ]; 
 
fi
 
# Find out where configure is (in what dir)
 
ROOT_DIR="`dirname $0`"
 
ROOT_DIR="`cd $ROOT_DIR && pwd`"
 

	
 
PWD="`pwd`"
 
PREFIX="`pwd`/bin"
 
PREFIX="$PWD/bin"
 

	
 
. $ROOT_DIR/config.lib
 

	
 
# Set default dirs
 
OBJS_DIR="$PWD/objs"
 
BASE_SRC_OBJS_DIR="$OBJS_DIR"
0 comments (0 inline, 0 general)