diff options
| -rw-r--r-- | Makefile.mingw.common | 4 | ||||
| -rwxr-xr-x | mingwenv.bat | 5 |
2 files changed, 7 insertions, 2 deletions
diff --git a/Makefile.mingw.common b/Makefile.mingw.common index be23d1ac8..f619f2a88 100644 --- a/Makefile.mingw.common +++ b/Makefile.mingw.common @@ -118,10 +118,14 @@ RMDIRREC = cd inkscape & $(RMDIR) /s RMDIRREC1 = & cd .. ####### Where is your GTK directory? +ifndef GTK GTK=c:/gtk28 +endif ####### Same thing, DOS style +ifndef GTKDOS GTKDOS=c:\gtk28 +endif ####### Command to process .po files --> .mo MSGFMT = $(GTKDOS)$(S)bin$(S)msgfmt diff --git a/mingwenv.bat b/mingwenv.bat index af77b7b6f..b5f04350a 100755 --- a/mingwenv.bat +++ b/mingwenv.bat @@ -1,4 +1,5 @@ @echo Setting environment variables for MinGw build of Inkscape -set GTK=c:\gtk28 -set path=c:\mingw\bin;%GTK%\bin;%path% +set GTK=c:/gtk28 +set GTKDOS=c:\gtk28 +set path=c:\mingw\bin;%GTKDOS%\bin;%path% |
