From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LoiWA-0006dK-GV for qemu-devel@nongnu.org; Tue, 31 Mar 2009 14:16:58 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LoiW6-0006d6-SF for qemu-devel@nongnu.org; Tue, 31 Mar 2009 14:16:58 -0400 Received: from [199.232.76.173] (port=43656 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LoiW6-0006d3-OM for qemu-devel@nongnu.org; Tue, 31 Mar 2009 14:16:54 -0400 Received: from [80.12.242.46] (port=16358 helo=smtp21.orange.fr) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LoiW6-00066g-9K for qemu-devel@nongnu.org; Tue, 31 Mar 2009 14:16:54 -0400 Received: from me-wanadoo.net (localhost [127.0.0.1]) by mwinf2104.orange.fr (SMTP Server) with ESMTP id 71AFF20000A6 for ; Tue, 31 Mar 2009 20:16:53 +0200 (CEST) Received: from r-lnx-leminkainen.bzh.lan (ARennes-252-1-22-123.w83-195.abo.wanadoo.fr [83.195.155.123]) by mwinf2104.orange.fr (SMTP Server) with ESMTP id 5A52020000A3 for ; Tue, 31 Mar 2009 20:16:53 +0200 (CEST) From: "Yann E. MORIN" Date: Tue, 31 Mar 2009 20:16:52 +0200 MIME-Version: 1.0 Content-Type: Multipart/Mixed; boundary="Boundary-00=_U4l0JQnJo8YRHUr" Message-Id: <200903312016.52868.yann.morin.1998@anciens.enib.fr> Subject: [Qemu-devel] [PATCH] Do not print directories as make descends into sub-dirs Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org --Boundary-00=_U4l0JQnJo8YRHUr Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Hello! Please consider this one-liner as my modest contribution. The attach patch tells make to not print the directory names as it descends into sub-dirs. This somewhat beautifies the build ouput. Regards, and keep up the good work! Yann E. MORIN. -- .-----------------.--------------------.------------------.--------------------. | Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: | | +0/33 662376056 | Software Designer | \ / CAMPAIGN | ___ | | --==< ^_^ >==-- `------------.-------: X AGAINST | \e/ There is no | | http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. | `------------------------------^-------^------------------^--------------------' --Boundary-00=_U4l0JQnJo8YRHUr Content-Type: text/x-diff; charset="iso 8859-15"; name="qemu-make-no-print-directory.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="qemu-make-no-print-directory.patch" Index: trunk/Makefile =================================================================== --- trunk/Makefile (revision 6963) +++ trunk/Makefile (working copy) @@ -1,5 +1,7 @@ # Makefile for QEMU. +MAKEFLAGS += --no-print-directory + include config-host.mak include $(SRC_PATH)/rules.mak --Boundary-00=_U4l0JQnJo8YRHUr--