diff options
author | Stefan Metzmacher <metze@samba.org> | 2007-01-12 14:05:07 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:40:29 -0500 |
commit | 845cfb3983220c55fa3dd1c9121626bbb0487976 (patch) | |
tree | 20210428d8707b6c15e419148325bb21ac612226 | |
parent | ffa259f4a463054a398cfcd4ae3f409c9a718bbc (diff) | |
download | samba-845cfb3983220c55fa3dd1c9121626bbb0487976.tar.gz samba-845cfb3983220c55fa3dd1c9121626bbb0487976.tar.bz2 samba-845cfb3983220c55fa3dd1c9121626bbb0487976.zip |
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)
-rw-r--r-- | source4/main.mk | 12 |
1 files changed, 6 insertions, 6 deletions
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 $<" |