# HG changeset patch # User rubidium # Date 2008-08-21 00:02:45 # Node ID 288ef297f5e31acf71571b2f7600acd2e76993c0 # Parent 1557d05a384c98a24034781c833096f734b2b99a (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. diff --git a/configure b/configure --- a/configure +++ b/configure @@ -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