neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit c651152a9db56d9fb4681789e38d9b52d996e960
parent 179d2d67d802a9f10ffbc69328b7f2a21dfbde3a
Author: Justin M. Keyes <justinkz@gmail.com>
Date:   Tue,  4 Oct 2022 18:35:32 +0200

fix(build): "make clean" fails

Problem:
"make clean" fails since 03bc23de36c8.

    make -C runtime/doc clean
    make[1]: *** No rule to make target `clean'.  Stop.
    make: *** [clean] Error 2

Solution:
Update the "clean" target.

Diffstat:
MMakefile | 1-
1 file changed, 0 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -138,7 +138,6 @@ test: functionaltest unittest clean: +test -d build && $(BUILD_TOOL) -C build clean || true $(MAKE) -C src/nvim/testdir clean - $(MAKE) -C runtime/doc clean $(MAKE) -C runtime/indent clean distclean: