summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKrzysztof Kosi??ski <tweenk.pl@gmail.com>2010-09-21 18:53:48 +0000
committerKrzysztof KosiƄski <tweenk.pl@gmail.com>2010-09-21 18:53:48 +0000
commit420e49b3e10e081f2d1e35c6beabcf7fc010cccc (patch)
tree7df46a042001fc88299f970c3206ab1f1900ea5e
parentFix DBus configure snippet (diff)
downloadinkscape-420e49b3e10e081f2d1e35c6beabcf7fc010cccc.tar.gz
inkscape-420e49b3e10e081f2d1e35c6beabcf7fc010cccc.zip
Give priority to devlibs bin directory in PATH when
running mingwenv.bat, to avoid problems caused by obsolete Gettext installations in the MinGW directory. (bzr r9774)
-rwxr-xr-xmingwenv.bat2
1 files changed, 1 insertions, 1 deletions
diff --git a/mingwenv.bat b/mingwenv.bat
index 4debd59cb..d8f100500 100755
--- a/mingwenv.bat
+++ b/mingwenv.bat
@@ -3,4 +3,4 @@ IF "%DEVLIBS_PATH%"=="" set DEVLIBS_PATH=c:\devlibs
IF "%MINGW_PATH%"=="" set MINGW_PATH=c:\mingw
set MINGW_BIN=%MINGW_PATH%\bin
set PKG_CONFIG_PATH=%DEVLIBS_PATH%\lib\pkgconfig
-set PATH=%MINGW_BIN%;%PATH%;%DEVLIBS_PATH%\bin;%DEVLIBS_PATH%\python
+set PATH=%DEVLIBS_PATH%\bin;%DEVLIBS_PATH%\python;%MINGW_BIN%;%PATH%