From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 8961D138010 for ; Sun, 28 Oct 2012 19:30:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 44EC621C02C; Sun, 28 Oct 2012 19:30:31 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id B079C21C02C for ; Sun, 28 Oct 2012 19:30:30 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2111833C246 for ; Sun, 28 Oct 2012 19:30:30 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2274) id E224A21600; Sun, 28 Oct 2012 19:30:28 +0000 (UTC) From: "Tim Harder (radhermit)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, radhermit@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in www-client/dwb/files: dwb-2012.10.28-verbose-build.patch X-VCS-Repository: gentoo-x86 X-VCS-Files: dwb-2012.10.28-verbose-build.patch X-VCS-Directories: www-client/dwb/files X-VCS-Committer: radhermit X-VCS-Committer-Name: Tim Harder Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20121028193028.E224A21600@flycatcher.gentoo.org> Date: Sun, 28 Oct 2012 19:30:28 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: fc301de3-78aa-4923-a7c1-a42307e87b47 X-Archives-Hash: bb9cdb7afc54efcff50682f3f3ef6740 radhermit 12/10/28 19:30:28 Added: dwb-2012.10.28-verbose-build.patch Log: Version bump. (Portage version: 2.2.0_alpha141/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3) Revision Changes Path 1.1 www-client/dwb/files/dwb-2012.10.28-verbose-build.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/dwb/files/dwb-2012.10.28-verbose-build.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/dwb/files/dwb-2012.10.28-verbose-build.patch?rev=1.1&content-type=text/plain Index: dwb-2012.10.28-verbose-build.patch =================================================================== --- dwb-2012.10.28/src/Makefile +++ dwb-2012.10.28/src/Makefile @@ -7,30 +7,25 @@ all: $(TARGET) $(TARGET): $(OBJ) - @echo "$(CC) $@" - @$(CC) $(OBJ) -o $(TARGET) $(LDFLAGS) + $(CC) $(OBJ) -o $(TARGET) $(LDFLAGS) -include $(OBJ:.o=.d) -include $(DOBJ:.do=.dd) %.o: %.c %.h config.h dwb.h tlds.h - @echo "${CC} $<" - @$(CC) -c -o $@ $< $(CFLAGS) $(CPPFLAGS) + $(CC) -c -o $@ $< $(CFLAGS) $(CPPFLAGS) debug: $(DTARGET) deps.d: %.c %.h tlds.h - @echo "$(CC) -MM $@" - @$(CC) $(CFLAGS) -MM $< -o $@ + $(CC) $(CFLAGS) -MM $< -o $@ %.do: %.c %.h config.h - @echo "${CC} $<" - @$(CC) -c -o $@ $< $(DCFLAGS) + $(CC) -c -o $@ $< $(DCFLAGS) $(DTARGET): $(DOBJ) - @echo "$(CC) $@" - @$(CC) $(DOBJ) -o $(DTARGET) $(LDFLAGS) + $(CC) $(DOBJ) -o $(DTARGET) $(LDFLAGS) tlds.h: tlds.in @echo gen tlds.h --- dwb-2012.10.28/tools/Makefile +++ dwb-2012.10.28/tools/Makefile @@ -24,12 +24,10 @@ all: $(TARGET) $(TARGET): $(OBJ) - @echo $(CC) $@ - @$(CC) $< -o $@ $(LDFLAGS) + $(CC) $< -o $@ $(LDFLAGS) %.o: %.c - @echo $(CC) $< - @$(CC) $(CFLAGS) -c $< -o $@ $(CPPFLAGS) + $(CC) $(CFLAGS) -c $< -o $@ $(CPPFLAGS) clean: rm -f $(TARGET) $(OBJ)