diff options
author | Justin Lecher <jlec@gentoo.org> | 2012-05-30 07:38:42 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2012-05-30 07:38:42 +0000 |
commit | 59788493c5ec8d8e8da6066f4efeab7cd13290f6 (patch) | |
tree | 9a1082694aefab78ae8304db05b7f72b48f0d1d2 /dev-python/shiboken/files | |
parent | Remove old. (diff) | |
download | gentoo-2-59788493c5ec8d8e8da6066f4efeab7cd13290f6.tar.gz gentoo-2-59788493c5ec8d8e8da6066f4efeab7cd13290f6.tar.bz2 gentoo-2-59788493c5ec8d8e8da6066f4efeab7cd13290f6.zip |
Add fix for prefix, missing rpath for qt4 installation
(Portage version: 2.2.0_alpha108/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/shiboken/files')
-rw-r--r-- | dev-python/shiboken/files/rpath.cmake | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/dev-python/shiboken/files/rpath.cmake b/dev-python/shiboken/files/rpath.cmake new file mode 100644 index 000000000000..b896c8789185 --- /dev/null +++ b/dev-python/shiboken/files/rpath.cmake @@ -0,0 +1,10 @@ +# use, i.e. don't skip the full RPATH for the build tree +SET(CMAKE_SKIP_BUILD_RPATH FALSE) + +# when building, don't use the install RPATH already +# (but later on when installing) +SET(CMAKE_BUILD_WITH_INSTALL_RPATH FALSE) + +# add the automatically determined parts of the RPATH +# which point to directories outside the build tree to the install RPATH +SET(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE) |