diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2022-10-04 18:35:32 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2022-10-04 18:37:59 +0200 |
commit | c651152a9db56d9fb4681789e38d9b52d996e960 (patch) | |
tree | d44eb510e841d0f63869ce76463a9929dd53a603 | |
parent | 179d2d67d802a9f10ffbc69328b7f2a21dfbde3a (diff) | |
download | rneovim-c651152a9db56d9fb4681789e38d9b52d996e960.tar.gz rneovim-c651152a9db56d9fb4681789e38d9b52d996e960.tar.bz2 rneovim-c651152a9db56d9fb4681789e38d9b52d996e960.zip |
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.
-rw-r--r-- | Makefile | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -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: |