From 845cfb3983220c55fa3dd1c9121626bbb0487976 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Fri, 12 Jan 2007 14:05:07 +0000 Subject: r20706: the '@' chars should only be in front of each line, but here the line is wrapped with '\' ... metze (This used to be commit 096a2ee97f97b3f9f57d844703ffaba53f7dd5d7) --- source4/main.mk | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'source4/main.mk') diff --git a/source4/main.mk b/source4/main.mk index d7b15bf2c3..838b13012d 100644 --- a/source4/main.mk +++ b/source4/main.mk @@ -394,17 +394,17 @@ PCHCOMPILE = @$(CC) -Ilib/replace \ @echo "Compiling $<" @-mkdir -p `dirname $@` @$(COMPILE) && exit 0 ; \ - @echo "The following command failed:" 1>&2;\ - @echo "$(COMPILE)" 1>&2;\ - @$(COMPILE) >/dev/null 2>&1 + echo "The following command failed:" 1>&2;\ + echo "$(COMPILE)" 1>&2;\ + $(COMPILE) >/dev/null 2>&1 .c.ho: @echo "Compiling $< with host compiler" @-mkdir -p `dirname $@` @$(HCOMPILE) && exit 0;\ - @echo "The following command failed:" 1>&2;\ - @echo "$(HCOMPILE)" 1>&2;\ - @$(HCOMPILE) >/dev/null 2>&1 + echo "The following command failed:" 1>&2;\ + echo "$(HCOMPILE)" 1>&2;\ + $(HCOMPILE) >/dev/null 2>&1 .h.h.gch: @echo "Precompiling $<" -- cgit