Author: metze
Date: 2007-01-12 14:05:07 +0000 (Fri, 12 Jan 2007)
New Revision: 20706

WebSVN: 
http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=20706

Log:
the '@' chars should only be in front of each line,
but here the line is wrapped with '\' ...

metze
Modified:
   branches/SAMBA_4_0/source/main.mk


Changeset:
Modified: branches/SAMBA_4_0/source/main.mk
===================================================================
--- branches/SAMBA_4_0/source/main.mk   2007-01-12 13:17:25 UTC (rev 20705)
+++ branches/SAMBA_4_0/source/main.mk   2007-01-12 14:05:07 UTC (rev 20706)
@@ -394,17 +394,17 @@
        @echo "Compiling $<"
        @-mkdir -p `dirname [EMAIL PROTECTED]
        @$(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 [EMAIL PROTECTED]
        @$(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 $<"

Reply via email to