changeset 205:76972d900783 default tip

Fix verbose build echos.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 29 Feb 2024 21:49:56 +0200
parents dd2caf5321ba
children
files Makefile
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile	Fri Feb 25 15:46:07 2022 +0200
+++ b/Makefile	Thu Feb 29 21:49:56 2024 +0200
@@ -27,7 +27,7 @@
 ifneq ($(V),1)
 DO_CMD=/bin/echo -E " $(1) $(2)" && $(3)
 else
-DO_CMD=/bin/echo -E $(3) && $(3)
+DO_CMD=/bin/echo -E "$(3)" && $(3)
 endif
 DO_MKDIR=if test ! -z "$(1)" -a ! -d "$(1)"; then /bin/echo -E " MKDIR $(1)"; mkdir -p "$(1)"; fi