make: improve the make install information message in both GNUmakefile and Makefile (as suggested by JalonSolov) (#23751)

This commit is contained in:
Delyan Angelov 2025-02-17 18:55:36 +02:00 committed by GitHub
parent e9641875c3
commit ce666a8f59
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 1 deletions

View File

@ -209,7 +209,7 @@ selfcompile-static:
### NB: Please keep this Makefile and make.bat simple.
install:
@echo 'Please use `sudo ./v symlink` instead.'
@echo 'Please use `sudo ./v symlink` instead, or manually add the current directory to your PATH.'
check:
$(VEXE)$(EXE_EXT) test-all

View File

@ -22,3 +22,6 @@ v:
check:
./v test-all
install:
@echo 'Please use `sudo ./v symlink` instead, or manually add the current directory to your PATH.'