From ce666a8f5977b1875b537b5fd53521366adae78c Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Mon, 17 Feb 2025 18:55:36 +0200 Subject: [PATCH] make: improve the `make install` information message in both GNUmakefile and Makefile (as suggested by JalonSolov) (#23751) --- GNUmakefile | 2 +- Makefile | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/GNUmakefile b/GNUmakefile index 869744b85e..9ae1ab8789 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -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 diff --git a/Makefile b/Makefile index ac71beebe5..42d4d9d95b 100644 --- a/Makefile +++ b/Makefile @@ -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.'