From owner-cvs-all Tue Jan 29 8:18:20 2002 Delivered-To: cvs-all@freebsd.org Received: from aldan.algebra.com (aldan.algebra.com [216.254.65.224]) by hub.freebsd.org (Postfix) with ESMTP id DA85937B419; Tue, 29 Jan 2002 08:18:11 -0800 (PST) Received: from aldan.algebra.com (localhost [127.0.0.1]) by aldan.algebra.com (8.11.6/8.11.5) with ESMTP id g0TGGsQ90665; Tue, 29 Jan 2002 11:16:57 -0500 (EST) (envelope-from mi@aldan.algebra.com) Message-Id: <200201291616.g0TGGsQ90665@aldan.algebra.com> Date: Tue, 29 Jan 2002 11:16:51 -0500 (EST) From: Mikhail Teterin Subject: Re: cvs commit: ports/irc/sirc Makefile ports/irc/zircon Makefile ports/japanese/bjfilter850 Makefile ports/japanese/easypr Makefile ports/japanese/edict Makefile ports/japanese/emacs20-emcws Makefile ports/japanese/epwutil Makefile ... To: knu@FreeBSD.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: <200201291108.g0TB8qx51380@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 29 Jan, Akinori MUSHA wrote: > Log: > Use ${ECHO_CMD} instead of ${ECHO} where you mean the echo command; > the ECHO macro is set to "echo" by default, but it is set to "true" > if make(1) is invoked with the -s option while ECHO_CMD is always > set to the echo command. Actually, in my opinion, using shell comment -- hash -- is even better instead of ECHO (not ECHO_CMD). foo: - @${ECHO} bar + # bar Yes, you see the extraneous ``#'' on the output, but it should be much lighter on the system. Shell ignores the line, but make echos it out. And it looks neater in the Makefile. -mi P.S. No, I have no objections to this series of commits :-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message