From c65eda3d8afe803fa21c82d3e990e82e241c561e Mon Sep 17 00:00:00 2001 From: "J. B. Rainsberger" Date: Wed, 20 Mar 2024 10:31:54 -0300 Subject: [PATCH] Update README to match new `make install` command It appears that the command to specify the `PREFIX` variable to the makefile has changed. I had to run `make PREFIX=$HOME/.local install` in order to override the hardcoded `PREFIX` value in the makefile. I infer that the instructions need to be changed for those who don't know. (TIL. ;) ) --- README.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.asciidoc b/README.asciidoc index b6c39124..f6261b22 100644 --- a/README.asciidoc +++ b/README.asciidoc @@ -215,7 +215,7 @@ If you want to compile from source on 20.04 or earlier, you must force the build ---------------------------------------------------------------- git clone https://github.com/mawww/kakoune.git && cd kakoune/src CXX=g++-10 make -PREFIX=$HOME/.local make install +make PREFIX=$HOME/.local install ---------------------------------------------------------------- ====