When compiling under XP with MSVC++ and gnuwin32, the compilation fails due to usage of mkdir. SOURCE: ... $(CFG_VAR)/%.obj: %.c @mkdir -p $(CFG_VAR) ... This will create a "-p" and a "release" directory and cause a compilation failure. It also issues warning when removing "-p" FIX: .... $(CFG_VAR)/%.obj: %.c @mkdir $(CFG_VAR) > NUL || true .... Cheers
It doesn't look like this is an issue anymore. Feel free to reopen if it is.
Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.