diff options
author | Rolf Eike Beer <eike@sf-mail.de> | 2019-03-19 22:46:56 (GMT) |
---|---|---|
committer | Rolf Eike Beer <eike@sf-mail.de> | 2019-03-19 22:49:11 (GMT) |
commit | eea9eda834466272b42f694a14d5d5f3d1975ec2 (patch) | |
tree | 9ddee237c4cd297ef71b631f91b54abd2a6627fa /Modules/FindLua50.cmake | |
parent | 8c0b7aa17dcbe24b38453843544bc61a25e1a851 (diff) | |
download | CMake-eea9eda834466272b42f694a14d5d5f3d1975ec2.zip CMake-eea9eda834466272b42f694a14d5d5f3d1975ec2.tar.gz CMake-eea9eda834466272b42f694a14d5d5f3d1975ec2.tar.bz2 |
remove some platform specific search paths from Find modules
These are added through CMAKE_SYSTEM_PREFIX_PATH on the platforms automatically.
Diffstat (limited to 'Modules/FindLua50.cmake')
-rw-r--r-- | Modules/FindLua50.cmake | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/Modules/FindLua50.cmake b/Modules/FindLua50.cmake index aafc056..52a54e7 100644 --- a/Modules/FindLua50.cmake +++ b/Modules/FindLua50.cmake @@ -40,9 +40,6 @@ find_path(LUA_INCLUDE_DIR lua.h PATHS ~/Library/Frameworks /Library/Frameworks - /sw # Fink - /opt/local # DarwinPorts - /opt/csw # Blastwave /opt ) @@ -54,9 +51,6 @@ find_library(LUA_LIBRARY_lua PATHS ~/Library/Frameworks /Library/Frameworks - /sw - /opt/local - /opt/csw /opt ) @@ -72,9 +66,6 @@ else() ENV LUA_DIR PATH_SUFFIXES lib PATHS - /sw - /opt/local - /opt/csw /opt ) if(LUA_LIBRARY_lualib AND LUA_LIBRARY_lua) |