From 2e3565363048fddebaa69cc6b96d8a0015e2cffe Mon Sep 17 00:00:00 2001 From: Pierre Labastie Date: Sat, 5 Feb 2022 20:08:56 +0100 Subject: [PATCH] makefile-functions: make sudo/chroot messages less confusing --- common/makefile-functions | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/common/makefile-functions b/common/makefile-functions index 819fbf8..991ef9a 100644 --- a/common/makefile-functions +++ b/common/makefile-functions @@ -31,21 +31,21 @@ define echo_SU_request @echo $(BOLD)-------------------------------------------------------------------------------- @echo $(BLUE)$@ @echo $(WHITE)ROOT privilege is required to perform a number of commands - @echo sudo will request a password in order to execute all high privilege commands + @echo sudo may request a password in order to execute all high privilege commands endef define echo_SULUSER_request @echo $(BOLD)-------------------------------------------------------------------------------- @echo $(BOLD)$(BLUE)$@ @echo $(WHITE)You are going to log into the user account $(BOLD)$(YELLOW)$(LUSER)$(OFF) - @echo sudo requires a password + @echo sudo may require a password endef define echo_CHROOT_request @echo $(BOLD)-------------------------------------------------------------------------------- @echo $(BOLD)$(BLUE)$@ - @echo $(WHITE)You are going to CHROOT into $(MOUNT_PT) $(BOLD)$(YELLOW)$(LUSER)$(OFF) - @echo a password is required + @echo $(WHITE)You are going to CHROOT into $(MOUNT_PT) + @echo a password may be required endef define echo_message