For some reason it needs to be
re = new RegExp("^\\s*(ARG_(ENABLE|WITH)\([^;]+\);)", "gm");
But that will work.
- Frank
> Frank M. Kromann wrote:
> > That has to do with the way the config.w32 files are processed.
> >
> > changing one line in win32\build\buildconf.js from
> >
> > re = new Reg
Frank M. Kromann wrote:
> That has to do with the way the config.w32 files are processed.
>
> changing one line in win32\build\buildconf.js from
>
> re = new RegExp("(ARG_(ENABLE|WITH)\([^;]+\);)", "gm");
>
> to
>
> re = new RegExp("^(ARG_(ENABLE|WITH)\([^;]+\);)", "gm");
>
> will prevent this
That has to do with the way the config.w32 files are processed.
changing one line in win32\build\buildconf.js from
re = new RegExp("(ARG_(ENABLE|WITH)\([^;]+\);)", "gm");
to
re = new RegExp("^(ARG_(ENABLE|WITH)\([^;]+\);)", "gm");
will prevent this from happening. This change will require the