fix sudo make install failed on Ubuntu 20.04#30
Open
kazuk wants to merge 1 commit intonimble-code:masterfrom
kazuk:master
Open
fix sudo make install failed on Ubuntu 20.04#30kazuk wants to merge 1 commit intonimble-code:masterfrom kazuk:master
sudo make install failed on Ubuntu 20.04#30kazuk wants to merge 1 commit intonimble-code:masterfrom
kazuk:master
Conversation
``` kazuk@kazuk-ubuntu2004:~/Spin$ sudo make install cd Src; make install make[1]: ディレクトリ '/home/kazuk/Spin/Src' に入ります cp spin /usr/local/bin/spin cp ../Man/spin.1 /usr/local/share/man/man1/spin.1 cp: 通常ファイル '/usr/local/share/man/man1/spin.1' を作成できません: そのようなファイルやディレクトリはありません make[1]: *** [makefile:44: install] エラー 1 make[1]: ディレクトリ '/home/kazuk/Spin/Src' から出ます make: *** [makefile:5: install] エラー 2 ``` by default , Ubuntu 20.04 doesn't have `/usr/local/share/man/man1` then need `mkdir /usr/local/share/man/man1`
3 tasks
montge
added a commit
to montge/Spin
that referenced
this pull request
Nov 30, 2025
- sched.c: Fix scanf return value check (check != 1 instead of == 0) to properly handle EOF condition - ci.yml: Add explicit permissions block to restrict workflow to read-only contents access (security best practice) Fixes CodeQL alerts nimble-code#27 (incorrectly-checked-scanf) and nimble-code#30-35 (missing-workflow-permissions) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
by default , Ubuntu 20.04 doesn't have
/usr/local/share/man/man1then need
mkdir /usr/local/share/man/man1