I have kdesrc-build set up to install to /home/kde4 error log: ... -- Up-to-date: /home/bolo/kde4/include/bodega/uninstalljob.h CMake Error at lib/bodega/handlers/epub/cmake_install.cmake:44 (FILE): file cannot create directory: /usr/lib64/qt4/plugins/bodegaassethandlers. Maybe need administrative privileges. ... Reproducible: Always
Created attachment 78797 [details] complete error.log
What you want to do is to redefine the QT_PLUGINS_DIR variable in your CMakeCache, because at the moment it's using the one suggested by qmake. You can do so by doing: cmake <builddir> -DQT_PLUGINS_DIR=<path to the builddir> Remember to set the QT_PLUGIN_PATH envvar (colon-separed).
... thanks!