How to use makensis.exe in the MinGW shell with MinGW mounted directories
Hi,
as you may know MinGW shell under WIN32 mounts stuff in the way that you get a Linux style directory layout, i.e. /home/someuser and so on.
Is it possible to make makensis.exe work with these directories? It seems that makensis always looks for absolute windows style paths, i.e. c:\mingw\msys\1.0\home\someuser
The reason why I am asking:
I have a project that compiles under MinGW, the configure script processes my nsi file automatically and inserts package version, location of compiled binaries that should go into the installer and so on.
However, since the build system runs within the MinGW environment, all paths are "local" MinGW paths, i.e. /home/someuser and so on.
My goal was to integrate makensis.exe into the build so that I'd simply run "make installer" to get what I need. However, makensis refuses to work with those paths and insists on c:\xxx
I even compiled nsis under MinGW, hoping that it would pick up the "local" layout, but that did not help.
Using nsis-3.0a1
Kind regards,
Jin