ports/93757: bsd.port.mk: get rid of annoying `true' message on make configure

Dmitry Marakasov amdmi3 at mail.ru
Thu Feb 23 15:30:06 UTC 2006


>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 at 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:



More information about the freebsd-ports-bugs mailing list