Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 20 Mar 2005 12:40:09 GMT
From:      Edwin Groothuis <edwin@mavetju.org>
To:        freebsd-ports-bugs@FreeBSD.org
Subject:   Re: ports/79010: [patch] bsd.port.mk - all-depends-tree target
Message-ID:  <200503201240.j2KCe9Di095044@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/79010; it has been noted by GNATS.

From: Edwin Groothuis <edwin@mavetju.org>
To: FreeBSD-gnats-submit@FreeBSD.org
Cc:  
Subject: Re: ports/79010: [patch] bsd.port.mk - all-depends-tree target
Date: Sun, 20 Mar 2005 23:38:12 +1100

 On Sat, Mar 19, 2005 at 11:58:43PM +1100, Edwin Groothuis wrote:
 > +			| ${FMT} -1 \
 > +			| ${SORT} -u \
 > +			| perl -e 'while (<>) { ~s/.*?\|/|\\_/g; ~s/\|\\_\|/|  |/g; ~s/\|\\_\|/|  |/g; print; }'; \
 > +    else \
 > +		echo ${PKGCATEGORY}/${PKGNAMEPREFIX}${PORTNAME}${PKGNAMESUFFIX} >&2; \
 > +		echo $${ALL}; \
 > +	fi
 > +.endif
 
 Please replace the perl line with:
 
 	| awk '{gsub(/[^\|]*\|/,"    ");print}'; \
 
 and remove the line with the echo of >&2.
 
 Edwin



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