Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[QUESTION] Text file busy make: *** [Makefile:181: install] Error 1 #5162

Open
nonumeros opened this issue Apr 27, 2024 · 1 comment
Open

Comments

@nonumeros
Copy link
Contributor

Question

The latest installation of kak would not let me continue and returned a

cp: cannot create regular file '/usr/local/bin/kak': Text file busy
make: *** [Makefile:181: install] Error 1

All the kak sessions had to be killed off before continuing with the installation. (Thought of mentioning it as it hadn't happened before. This is the first time actually).

@Screwtapello
Copy link
Contributor

"Text file busy" is the standard POSIX error for when something tries to write to a program while it's running, or run a program while it's being written to.

make install might be able to work around this by using cp -f (which will delete the destination file and try again), but in general it's a bad idea to have version mismatches between Kakoune clients, Kakoune servers, and the standard library. Quitting all Kakoune sessions before an upgrade is a much better way to go about it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants