951d438ddd
When querying the qmake properties with our custom qt.conf present, I noticed that they were different from the built-in ones (without qt.conf). Most notably QT_INSTALL_PREFIX was a concatenated string of two absolute paths (hostdir + sysroot). This is due to Prefix being set to our HOST_DIR and HostPrefix not being set at all. Supposedly this was also the root cause of the initial problem with qt.conf.in, because once Prefix and HostPrefix are set to their correct values, re-setting all the other paths to their defaults is no longer necessary. (However, since our paths for Headers, Plugins and Examples are non-default, they still have to be explicitely set.) There is one exception to this: omitting 'Settings' leads to the CONFIGURATION path being plain /usr, whereas the default without qt.conf is /usr/etc/xdg. But even if storing configs directly under /usr seems a bit strange we keep it that way, because our qt.conf did set it to /usr before and we don't want to break existing users. Signed-off-by: Andreas Naumann <anaumann@ultratronik.de> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
8 lines
151 B
Plaintext
8 lines
151 B
Plaintext
[Paths]
|
|
Prefix=/usr
|
|
HostPrefix=@@HOST_DIR@@
|
|
Sysroot=@@STAGING_DIR@@
|
|
Headers=/usr/include/qt5
|
|
Plugins=/usr/lib/qt/plugins
|
|
Examples=/usr/lib/qt/examples
|