Details
-
Bug
-
Resolution: Done
-
P2: Important
-
Qt Creator 3.1.0-rc1
-
d9548d6422d620ab1cd55ef0a58ea628f6be87a5
Description
The project wizard generates "deployment.pri" the following deployment applied on QNX identified as a unix derivate:
...
} else:unix {
isEmpty(target.path) {
target.path = /opt/$${TARGET}/bin
export(target.path)
}
INSTALLS += target
}
The "/opt" folder resides in an read-only file system partition on QNX. Due to this, deployment fails. I expect, this will fail on other embedded systems which have read-only flash partitions
"/tmp" is a better default which will always work.