From 6eb85261590c45586219bd447c936bda8921e5a6 Mon Sep 17 00:00:00 2001 From: Mahmoud Al-Qudsi Date: Mon, 1 Oct 2018 20:19:36 -0500 Subject: [PATCH] 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] --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 95d23ed0d..df217e3fb 100644 --- a/README.md +++ b/README.md @@ -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 ```