Skip to content

Commit ce666a8

Browse files
authored
make: improve the make install information message in both GNUmakefile and Makefile (as suggested by JalonSolov) (#23751)
1 parent e964187 commit ce666a8

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

GNUmakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ selfcompile-static:
209209

210210
### NB: Please keep this Makefile and make.bat simple.
211211
install:
212-
@echo 'Please use `sudo ./v symlink` instead.'
212+
@echo 'Please use `sudo ./v symlink` instead, or manually add the current directory to your PATH.'
213213

214214
check:
215215
$(VEXE)$(EXE_EXT) test-all

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,6 @@ v:
2222

2323
check:
2424
./v test-all
25+
26+
install:
27+
@echo 'Please use `sudo ./v symlink` instead, or manually add the current directory to your PATH.'

0 commit comments

Comments
 (0)