Remove no-longer-needed CMAKE_BUILD_TYPE comment

An update to `CMakeLists.txt` set the default build type to
`RelWithDebInfo`, so there's no need to tell users to consider appending
`-DCMAKE_BUILD_TYPE=Release` at all.

[skip ci]
This commit is contained in:
Mahmoud Al-Qudsi 2018-10-01 20:19:36 -05:00
parent e04130e145
commit 6eb8526159

View File

@ -114,7 +114,7 @@ Additionally, if compiling fish with GNU Make from git (that is, not from an off
```bash
mkdir build; cd build
cmake .. # add -DCMAKE_BUILD_TYPE=Release for release build
cmake ..
make
sudo make install
```