Details
-
Bug
-
Resolution: Invalid
-
P3: Somewhat important
-
None
-
5.10.0
-
None
-
mingw64/MSYS with Qt 5.10
Description
I'm using qmake inside Mingw64/MSYS.
Inside the pro files I need to refer to a relative path (DESTDIR=../bin) so testcase executables are placed correctly.
When running the make check target, the generated Makefile code contains a line with a windows path notation:
{{cd ..\bin && /C/Projects/tests/Testcase/src/target_wrapper.sh ./Testcase.exe }}
Changing to ..\bin will fail, because ..bin is not found:
{{/bin/sh: Zeile 0: cd: ..bin: No such file or directory }}
I can't find the reason why qmake mixes windows and *nix notation.