diff options
author | markd <markd@pkgsrc.org> | 2011-09-29 19:27:06 +0000 |
---|---|---|
committer | markd <markd@pkgsrc.org> | 2011-09-29 19:27:06 +0000 |
commit | 185a97c4fb773611a71e8ea0e28a18bd1836d94b (patch) | |
tree | 3352d96025c1e2049b69fbb5a704dcd75f020856 | |
parent | 179d410ccd17ee9f425358049684c393066734d6 (diff) | |
download | pkgsrc-185a97c4fb773611a71e8ea0e28a18bd1836d94b.tar.gz |
Re-add $PREFIX (but not hard coded this time) to CMAKE_SYSTEM_PREFIX_PATH
Needed to properly detect and set the paths of some installed packages
that fall outside the buildlink framework.
-rw-r--r-- | mk/cmake-Modules/Platform/UnixPaths.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mk/cmake-Modules/Platform/UnixPaths.cmake b/mk/cmake-Modules/Platform/UnixPaths.cmake index 4c6c8985bff..39554a88f52 100644 --- a/mk/cmake-Modules/Platform/UnixPaths.cmake +++ b/mk/cmake-Modules/Platform/UnixPaths.cmake @@ -5,7 +5,7 @@ GET_FILENAME_COMPONENT(_CMAKE_INSTALL_DIR "${_CMAKE_INSTALL_DIR}" PATH) LIST(APPEND CMAKE_SYSTEM_PREFIX_PATH # Standard - / /usr $ENV{BUILDLINK_DIR} + / /usr $ENV{BUILDLINK_DIR} $ENV{PREFIX} ) SET(CMAKE_SYSTEM_INCLUDE_PATH ${CMAKE_SYSTEM_INCLUDE_PATH} |