1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-08-16 16:20:38 +03:00

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. ;) )
This commit is contained in:
J. B. Rainsberger 2024-03-20 10:31:54 -03:00 committed by GitHub
parent f6762724ea
commit c65eda3d8a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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
----------------------------------------------------------------
====