summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@nokia.com>2012-03-28 16:00:06 +0200
committerOswald Buddenhagen <oswald.buddenhagen@nokia.com>2012-06-19 16:39:50 +0200
commit78290e66c46483a96b033d991b06288bc891b7c2 (patch)
tree1bc85e5da379c45446263682195ee0a62264a6b2 /src
parent17b6125bce3d127006cb2e48bb0a4b3be242f895 (diff)
clean up path normalization in configure.exe and QLibraryInfo
always use normalized path separators, except when running native commands or printing (note however that the qmake -query output will now be consistently normalized). Change-Id: I6ae920c3bc656cb517d1f4e4e5518cf79e002169 Reviewed-by: Joerg Bornemann <joerg.bornemann@nokia.com>
Diffstat (limited to 'src')
-rw-r--r--src/corelib/global/qlibraryinfo.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/corelib/global/qlibraryinfo.cpp b/src/corelib/global/qlibraryinfo.cpp
index 801b4d94cd..d4fb8deb06 100644
--- a/src/corelib/global/qlibraryinfo.cpp
+++ b/src/corelib/global/qlibraryinfo.cpp
@@ -312,6 +312,8 @@ QLibraryInfo::rawLocation(LibraryLocation loc)
}
config->endGroup();
+
+ ret = QDir::fromNativeSeparators(ret);
}
}