Revision 420280f32265eda0e24b2b11ab9d39491d9e8512 authored by Brad King on 30 April 2014, 20:18:13 UTC, committed by Brad King on 30 April 2014, 20:21:58 UTC
In commit v3.0.0-rc1~103^2~3 (ExternalProject: Reattempt download when
verification fails, 2014-01-15) a reference to ${CMAKE_COMMAND} was
added to generate a reference to the CMake command in a cmake script.
Escape the '$' so that the literal variable reference appears in the
script instead of writing the path to the current cmake.  This is
necessary when the path to CMake contains spaces or other characters
special to CMake syntax.
1 parent 20b46a0
Raw File
configure
#!/bin/sh
cmake_source_dir=`cd "\`dirname \"$0\"\`";pwd`
exec "${cmake_source_dir}/bootstrap" "$@"
back to top