Hello,
QtCreator generated pro file contains this:
Code:
maemo5 | !isEmpty(MEEGO_VERSION_MAJOR) {
installPath = /usr/lib/qt4/imports/$$replace(uri, \\., /)
} else {
installPath = $$[QT_INSTALL_IMPORTS]/$$replace(uri, \\., /)
}
And in MeeGo, it points to /usr/ so I changed to this:
Code:
installPath = /opt/myapp/......
Now in deb file, plugin goes under /opt but when deploy to device:
Code:
Aegis rejecting /tmp/myapp_0.0.1_armel.deb: opt/.....plugin.so not installed by the package
aegis aborting dpkg -- all listed package files rejected
So something eats / from beginning. What macro I should use here ?
Should this have some default macros for meego target ?