In build settings I have
-- 8< --
Make: C:/msys64/mingw64/bin/mingw32-make.exe
Mkdir: C:/msys64/usr/bin/mkdir.exe -p
-- >8 --
Since 17.1, generated Makefile quotes mkdir resulting in error ("C:/msys64/usr/bin/mkdir.exe -p" -> file not found).
Using c:\Program files\Codelite\mkdir.exe
also result with an error:
/Program Files/CodeLite/mkdir: missing operand
c:\Program files\Codelite\mkdir.exe
work in cmd, but not in msys shell
I found a workaround with a script which forward to mkdir -p
...
- Is there a reason for the quote?
- Is codelite\mkdir supposed to work in msys shell?
- How to clean up my config (remove my workaround)?