Remove spurious "-C" flag from CMake command lines in build.html.

-C usually specifies a script to prepopulate the CMake cache. In this case no
script is specified, so CMake appears to just ignore it. So don't mention it
in the first place - it's not desired anyways.

Reviewed by: Daniel Malea

llvm-svn: 186964
This commit is contained in:
Stefanus Du Toit 2013-07-23 17:29:44 +00:00
parent bc4d7134f4
commit 403477bdac
1 changed files with 2 additions and 2 deletions

View File

@ -142,14 +142,14 @@
ninja on your system. To build using ninja:
</p>
<code>
&gt; cmake -C .. -G Ninja
&gt; cmake .. -G Ninja
<br>&gt; ninja lldb
<br>&gt; ninja check-lldb
</code>
<h3>Using CMake + Unix Makefiles</h3>
<p>If you do not have Ninja, you can still use CMake to generate Unix Makefiles that build LLDB:</p>
<code>
&gt; cmake -C ..
&gt; cmake ..
<br>&gt; make
<br>&gt; make check-lldb
</code>