Hi all,<div><br></div><div>I&#39;m trying to build boost with ExternalProject_add using cmake 2.8.7, and there seems to be an error in the makefile it&#39;s generating.  Specifically, in the step where it created the directories, the makefile ends up with this line:</div>
<div><br></div><div> /apps/cmake/cmake-2.8.7/bin/cmake -E make_directory /workspace/boost/build CONFIGURE_CMD &quot;bootstrap.sh --libdir=/workspace/boost/install --includedir=/workspace/boost/install --with-libraries=serialization&quot; BUILD_CMD &quot;bjam install&quot;<br clear="all">
<br>It seems to me that that is supposed to be two or more separate calls.  This obviously ends up calling cmake in error.  Below is my call to ExternalProject_add, in-case that is what is in erorr, but I&#39;ve fooled around with it a fair amount and get the same results every time, so I don&#39;t think that&#39;s where the issue is</div>
<div><br></div><div><div>ExternalProject_Add           ( boost</div><div>  PREFIX                        ${CMAKE_SOURCE_DIR}/boost/tmp</div><div>  DOWNLOAD_COMMAND              &quot;&quot;</div><div>  SOURCE_DIR                    ${CMAKE_SOURCE_DIR}/boost/1_48_0</div>
<div>  INSTALL_DIR                   ${CMAKE_SOURCE_DIR}/boost/install</div><div>  BINARY_DIR                    ${CMAKE_SOURCE_DIR}/boost/build</div><div>  CONFIGURE_CMD                 &quot;bootstrap.sh --libdir=&lt;INSTALL_DIR&gt; --includedir=&lt;INSTALL_DIR&gt; --with-libraries=serialization&quot;</div>
<div>  BUILD_CMD                     &quot;bjam install&quot;</div><div>)</div><div><br></div>Thanks for the help!<br>
</div>