r20706: the '@' chars should only be in front of each line,
authorStefan Metzmacher <metze@samba.org>
Fri, 12 Jan 2007 14:05:07 +0000 (14:05 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 19:40:29 +0000 (14:40 -0500)
but here the line is wrapped with '\' ...

metze
(This used to be commit 096a2ee97f97b3f9f57d844703ffaba53f7dd5d7)

source4/main.mk

index d7b15bf2c37a80cea13997756bc53dbed72204ae..838b13012d410e3fc7473894e1bb77a7b4811639 100644 (file)
@@ -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 $<"