qmake: fix .pc install target dir separators on windows
Task-number: QTBUG-26455 Change-Id: I578345b1676d0d2e812e0ab2e48468b4a8013ee9 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com> Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>bb10
parent
c3ffcbd9a2
commit
3c05a0f3e7
|
|
@ -807,7 +807,7 @@ QString Win32MakefileGenerator::defaultInstall(const QString &t)
|
|||
QString dst_pc = pkgConfigFileName(false);
|
||||
if (!dst_pc.isEmpty()) {
|
||||
dst_pc = filePrefixRoot(root, targetdir + dst_pc);
|
||||
const QString dst_pc_dir = fileInfo(dst_pc).path();
|
||||
const QString dst_pc_dir = Option::fixPathToTargetOS(fileInfo(dst_pc).path(), false);
|
||||
if (!dst_pc_dir.isEmpty()) {
|
||||
if (!ret.isEmpty())
|
||||
ret += "\n\t";
|
||||
|
|
|
|||
Loading…
Reference in New Issue