Re: [cmake-developers] [PATCH] Only search for install_name_tool if the toolchain has it

2014-07-02 Thread Brad King
On 07/02/2014 09:23 AM, Rolf Eike Beer wrote: > Am 02.07.2014 15:19, schrieb Brad King: >> OS X: Only search for install_name_tool if the toolchain has it >> http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=b3012d20 > > Probably also remove the comment in the line before? Yes, revised: OS X

Re: [cmake-developers] [PATCH] Only search for install_name_tool if the toolchain has it

2014-07-02 Thread Rolf Eike Beer
Am 02.07.2014 15:19, schrieb Brad King: On 07/01/2014 02:48 PM, Florent Castelli wrote: When cross compiling, toolchains won't have install_name_tool, which is provided by Xcode and command line tools on OSX. This is a Mach-O specific utility and not required on all platforms. Applied, thanks:

Re: [cmake-developers] [PATCH] Only search for install_name_tool if the toolchain has it

2014-07-02 Thread Brad King
On 07/01/2014 02:48 PM, Florent Castelli wrote: > When cross compiling, toolchains won't have install_name_tool, > which is provided by Xcode and command line tools on OSX. > This is a Mach-O specific utility and not required on all platforms. Applied, thanks: OS X: Only search for install_name_

[cmake-developers] [PATCH] Only search for install_name_tool if the toolchain has it

2014-07-01 Thread Florent Castelli
When cross compiling, toolchains won't have install_name_tool, which is provided by Xcode and command line tools on OSX. This is a Mach-O specific utility and not required on all platforms. --- Modules/CMakeFindBinUtils.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modu