Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 23 Feb 2006 18:27:29 +0300 (MSK)
From:      Dmitry Marakasov <amdmi3@mail.ru>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/93757: bsd.port.mk: get rid of annoying `true' message on make configure
Message-ID:  <20060223152729.B5EC5154@hades.panopticon>
Resent-Message-ID: <200602231530.k1NFU5vZ017966@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         93757
>Category:       ports
>Synopsis:       bsd.port.mk: get rid of annoying `true' message on make configure
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Thu Feb 23 15:30:05 GMT 2006
>Closed-Date:
>Last-Modified:
>Originator:     Dmitry Marakasov
>Release:        FreeBSD 6.0-RELEASE-p4 i386
>Organization:
>Environment:
System: FreeBSD hades.panopticon 6.0-RELEASE-p4 FreeBSD 6.0-RELEASE-p4 #1: Fri Jan 27 12:07:19 MSK 2006 amdmi3@hades.panopticon:/usr/obj/usr/src/sys/HADES i386

>Description:
There's meaningless `true' message appearing during configure phase on many ports, just like this:

--- cut ---
# cd /usr/ports/games/bzflag && make configure
===>  Configuring for bzflag-2.0.4_1
true
--- cut ---

It's caused by quiet modifier (@) missing on a line with ${DO_NADA} (which is apparently `true'). The patch fixes this behavior.

>How-To-Repeat:
do `make configure' on, for example, games/bzflag port
>Fix:

--- bsd.port.mk.patch begins here ---
--- bsd.port.mk.orig	Thu Feb 23 13:43:00 2006
+++ bsd.port.mk	Thu Feb 23 18:18:48 2006
@@ -3302,7 +3302,7 @@
 
 .if !target(run-autotools)
 run-autotools:
-	${DO_NADA}
+	@${DO_NADA}
 .endif
 
 # Configure
--- bsd.port.mk.patch ends here ---


>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20060223152729.B5EC5154>