summaryrefslogtreecommitdiffstats
path: root/src/corelib/io/qfilesystemengine_unix.cpp
diff options
context:
space:
mode:
authorSergio Ahumada <sahumada@blackberry.com>2014-02-18 12:08:19 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-02-20 08:09:49 +0100
commitac127a8c09ab91d15adb1cb9d44123f3e0185e00 (patch)
tree2230fe564df0b078e879829ce9fc8cd7caf63661 /src/corelib/io/qfilesystemengine_unix.cpp
parent121e71293500e08148d3c2ce31a8e9b618943cba (diff)
Blackberry: Fix QFileSystemEngine::tempPath()
Fall back to /var/tmp instead of /tmp if neither TMPDIR nor TEMP are set. /tmp is not a true filesystem on BB10 but rather a symbolic link to /dev/shmem For more info see http://www.qnx.com/developers/docs/6.3.0SP3/neutrino/user_guide/fsystems.html#RAM Change-Id: Ie690ed74ffd81b52ef4623458c3ff88629aee00a Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'src/corelib/io/qfilesystemengine_unix.cpp')
-rw-r--r--src/corelib/io/qfilesystemengine_unix.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/corelib/io/qfilesystemengine_unix.cpp b/src/corelib/io/qfilesystemengine_unix.cpp
index 2327c11c69..ea3a3ca13d 100644
--- a/src/corelib/io/qfilesystemengine_unix.cpp
+++ b/src/corelib/io/qfilesystemengine_unix.cpp
@@ -720,8 +720,8 @@ QString QFileSystemEngine::tempPath()
temp = QFile::decodeName(qgetenv("TMPDIR"));
if (temp.isEmpty()) {
- qWarning("Neither the TEMP nor the TMPDIR environment variable is set, falling back to /tmp.");
- temp = QLatin1String("/tmp");
+ qWarning("Neither the TEMP nor the TMPDIR environment variable is set, falling back to /var/tmp.");
+ temp = QLatin1String("/var/tmp");
}
return QDir::cleanPath(temp);
#else