From 862dfd841f7370423fc817d21fdce9a189b42a86 Mon Sep 17 00:00:00 2001 From: Xavier Delaruelle Date: Sun, 12 Apr 2020 09:59:25 +0200 Subject: [PATCH] install: consistenly output Makefile warning msgs on stderr --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 746a1625..5e6a2cce 100644 --- a/Makefile +++ b/Makefile @@ -455,11 +455,11 @@ ifneq ($(builddoc),n) $(MAKE) -C doc install DESTDIR=$(DESTDIR) else @echo - @echo "WARNING: Documentation not built nor installed" + @echo "WARNING: Documentation not built nor installed" >&2 endif @echo - @echo "NOTICE: Modules installation is complete." - @echo " Please read the 'Configuration' section in INSTALL guide to learn" + @echo "NOTICE: Modules installation is complete." >&2 + @echo " Please read the 'Configuration' section in INSTALL guide to learn" >&2 @echo " how to adapt your installation and make it fit your needs." >&2 @echo