From c4f5d419c02bf03b6e41b30c7c6abe0cd8206ceb Mon Sep 17 00:00:00 2001 From: rubidium Date: Thu, 21 Aug 2008 00:02:45 +0000 Subject: [PATCH] (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. --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 3f8b6f58b3..55dfc6785f 100755 --- 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