svn commit: samba r14386 - in branches/SAMBA_4_0/source: .

metze at samba.org metze at samba.org
Tue Mar 14 17:12:12 GMT 2006


Author: metze
Date: 2006-03-14 17:12:12 +0000 (Tue, 14 Mar 2006)
New Revision: 14386

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

Log:
- use echo "..." instead of echo ... in all places
- make the output of the CC_CHECKER more readable when you have a fast box
  and the each .c file take less than 1s.

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	2006-03-14 16:41:40 UTC (rev 14385)
+++ branches/SAMBA_4_0/source/main.mk	2006-03-14 17:12:12 UTC (rev 14386)
@@ -319,7 +319,7 @@
 .SUFFIXES: .x .c .et .y .l .d .o .h .h.gch .a .so .1 .1.xml .3 .3.xml .5 .5.xml .7 .7.xml .8 .8.xml .ho
 
 .c.ho:
-	@echo Compiling $*.c with host compiler
+	@echo "Compiling $*.c with host compiler"
 	@$(HOSTCC) `script/cflags.pl $@` $(CFLAGS) -c $*.c -o $@
 
 .c.d:
@@ -328,14 +328,14 @@
 
 .c.o:
 	@if test -n "$(CC_CHECKER)"; then \
-		echo Call \'$(CC_CHECKER)\' for $<; \
+		echo "Checking  $< with '$(CC_CHECKER)'"; \
 		$(CC_CHECKER) `script/cflags.pl $@` $(CFLAGS) $(PICFLAG) -c $< -o $@; \
 	fi
-	@echo Compiling $<
+	@echo "Compiling $<"
 	@$(CC) `script/cflags.pl $@` $(CFLAGS) $(PICFLAG) -c $< -o $@
 
 .h.h.gch:
-	@echo Precompiling $<
+	@echo "Precompiling $<"
 	@$(CC) `script/cflags.pl $@` $(CFLAGS) $(PICFLAG) -c $< -o $@
 
 .y.c:



More information about the samba-cvs mailing list