[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] [gnuradio] 01/01: cmake: FindICE wasn't looking in the
From: |
git |
Subject: |
[Commit-gnuradio] [gnuradio] 01/01: cmake: FindICE wasn't looking in the cmake prefix properly to find the include files. |
Date: |
Fri, 10 Jan 2014 21:29:25 +0000 (UTC) |
This is an automated email from the git hooks/post-receive script.
trondeau pushed a commit to branch maint
in repository gnuradio.
commit 10225ae49843552b6416721caad6c689d3b7a380
Author: Tom Rondeau <address@hidden>
Date: Fri Jan 10 16:28:31 2014 -0500
cmake: FindICE wasn't looking in the cmake prefix properly to find the
include files.
---
cmake/Modules/FindICE-3.5.cmake | 2 +-
cmake/Modules/FindICE.cmake | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/cmake/Modules/FindICE-3.5.cmake b/cmake/Modules/FindICE-3.5.cmake
index 6d783a9..7ac53c9 100644
--- a/cmake/Modules/FindICE-3.5.cmake
+++ b/cmake/Modules/FindICE-3.5.cmake
@@ -11,7 +11,7 @@ if(NOT ICE_FOUND)
FIND_PATH(
ICE_CONFIG_INCLUDE_DIR
NAMES IceUtil/Config.h
- HINTS ${ICE_MANUAL_INSTALL_PATH}/include/
${CMAKE_INSTALL_PREFIX}/${HEADER_DIR}
+ HINTS ${ICE_MANUAL_INSTALL_PATH}/include/ ${CMAKE_INSTALL_PREFIX}/include/
)
if(ICE_CONFIG_INCLUDE_DIR)
file(STRINGS "${ICE_CONFIG_INCLUDE_DIR}/IceUtil/Config.h"
diff --git a/cmake/Modules/FindICE.cmake b/cmake/Modules/FindICE.cmake
index d7c6f79..087ee9b 100644
--- a/cmake/Modules/FindICE.cmake
+++ b/cmake/Modules/FindICE.cmake
@@ -11,7 +11,7 @@ if(NOT ICE_FOUND)
FIND_PATH(
ICE_CONFIG_INCLUDE_DIR
NAMES IceUtil/Config.h
- HINTS ${ICE_MANUAL_INSTALL_PATH}/include/
${CMAKE_INSTALL_PREFIX}/${HEADER_DIR}
+ HINTS ${ICE_MANUAL_INSTALL_PATH}/include/ ${CMAKE_INSTALL_PREFIX}/include/
)
if(ICE_CONFIG_INCLUDE_DIR)
file(STRINGS "${ICE_CONFIG_INCLUDE_DIR}/IceUtil/Config.h"